/laravel

Template Laravel

Primary LanguagePHP

Build Status Total Downloads Latest Stable Version License

About Template Laravel by Badri Zaki

This Laravel is a Template my standard structure (Models, View, Controller, Routes etc).

You can add controller with my template using php artisan. Here is example how to create controller :

  • php artisan make:custom-controller {NameController}
  • php artisan make:custom-controller ProductController

or you can add directory :

  • php artisan make:custom-controller Admin/ProductController

You also can create models simple using php artisan Here is example how to create model :

  • php artisan make:custom-model {ModelName} --table={tablename}
  • php artisan make:custom-model Product --table=product