Skip to content

Latest commit

 

History

History
56 lines (49 loc) · 1.81 KB

README.md

File metadata and controls

56 lines (49 loc) · 1.81 KB

Laravel 9 Datatables

simple CRUD project created with laravel v9 with datatables

Requirements

no name version
1 nginx *
2 php >= 8.0
3 laravel 9
4 mariaDB >= 10

Installation

  • clone this project
  • Create .env file cp .env.example .env
  • edit config database and mail in .env file
  • Install composer package composer install or composer update
  • Install npm package npm install or npm update
  • Run laravel Mix npm run dev or npm run production
  • create key and create storage
php artisan key:generate
php artisan storage:link
  • for optimize server production composer run-script optimize-prod
  • for optimize server development composer run-script optimize-dev
  • run Migration and Seeder php artisan migrate:fresh --seed
  • run server with php artisan
php artisan serve --port=8080
  • run server with php native
php -S 127.0.0.1:8080 -t public
  • done, just try run your project in browser to http://127.0.0.1:8080
  • nginx server is recommended

Function List