0% found this document useful (0 votes)
21 views2 pages

Laravel Naming Rules

Uploaded by

mohammed.s.sati
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
21 views2 pages

Laravel Naming Rules

Uploaded by

mohammed.s.sati
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

php artisan make:model Employee

php artisan make:controller EmployeeController


php artisan make:resource EmployeeResource
php artisan make:factory EmployeeFactory
php artisan make:seeder EmployeesTableSeeder
php artisan make:migration create_employees_table

php artisan make:model Truck


php artisan make:controller TruckController
php artisan make:resource TruckResource
php artisan make:factory TruckFactory
php artisan make:seeder TrucksTableSeeder
php artisan make:migration create_trucks_table

php artisan make:model Department


php artisan make:controller DepartmentController
php artisan make:resource DepartmentResource
php artisan make:factory DepartmentFactory
php artisan make:seeder DepartmentsTableSeeder
php artisan make:migration create_departments_table

php artisan make:model Car


php artisan make:controller CarController
php artisan make:resource CarResource
php artisan make:factory CarFactory
php artisan make:seeder CarsTableSeeder
php artisan make:migration create_cars_table

php artisan make:model OtherGood


php artisan make:controller OtherGoodController
php artisan make:resource OtherGoodResource
php artisan make:factory OtherGoodFactory
php artisan make:seeder OtherGoodsTableSeeder
php artisan make:migration create_other_goods_table

php artisan make:model Container


php artisan make:controller ContainerController
php artisan make:resource ContainerResource
php artisan make:factory ContainerFactory
php artisan make:seeder ContainersTableSeeder
php artisan make:migration create_containers_table

php artisan make:model Equipment


php artisan make:controller EquipmentController
php artisan make:resource EquipmentResource
php artisan make:factory EquipmentFactory
php artisan make:seeder EquipmentsTableSeeder
php artisan make:migration create_equipments_table

php artisan make:model Visit


php artisan make:controller VisitController
php artisan make:resource VisitResource
php artisan make:factory VisitFactory
php artisan make:seeder VisitsTableSeeder
php artisan make:migration create_visits_table
php artisan make:resource EmployeeCollection
php artisan make:resource TruckCollection
php artisan make:resource DepartmentCollection
php artisan make:resource CarCollection
php artisan make:resource OtherGoodCollection
php artisan make:resource ContainerCollection
php artisan make:resource VisitCollection
php artisan make:resource EquipmentCollection

You might also like