Artisan Laravel

Artisan laravel yang sering dipakai:

php artisan make:controller Mahasiswa –resource
php artisan make:controller Mahasiswa –resource –model=Photo

php artisan make:controller ChartjsController –resource

php artisan make:controller TagihanBRIVA –resource

php artisan make:model Category -m
php artisan make:model –factory Link
php artisan make:model Todo -a
php artisan make:model Todo -mcr
php artisan make:model TagihanSementara -mcr

php artisan make:factory MahasiswaFactory –model=Mahasiswa
php artisan make:seeder LinksTableSeeder
php artisan make:seeder MahasiswasTableSeeder
php artisan make:seeder PembayaransTableSeeder
php artisan db:seed
php artisan db:seed –class=PembayaransTableSeeder

php artisan make:migration create_mahasiswas_table –create=mahasiswas
php artisan migrate:fresh –seed
php artisan migrate –path=/database/migrations/test/
php artisan migrate
php artisan migrate:rollback
php artisan migrate:rollback –step=5
php artisan migrate:reset
//Setelah update .env
php artisan config:cache

composer show -i

php artisan serve

dd(DB::getQueryLog())

Artisan Laravel

Leave a comment