/laravel-crud

basic laravel crud

Primary LanguagePHP

A very basic crud app

  • Clone the PJ
  • Copy .env.example and rename it to .env
  • Fill in the informations in .env
  • Create a database ( based on ur env name )
  • Install php dependencies -> composer install
  • Generate app key -> php artisan key:generate
  • Migrate -> php artisan migrate
  • Seed data -> php artisan db:seed
  • Serve the app -> php artisan serve

TODOS

  • Authentication & Authorization
  • Improve response and error handling
  • Improve the structure
  • Many more to be improved