Installation

NOTE: Requirements need to be with laravel version 7.x or higher and PHP Version 7.3 or higher.

  • Clone repository git clone https://github.com/darryldecode/laravel-starter-kit.git
  • cp .env.example .env Then open .env file and put necessary credentials. Make sure to put proper APP_URL because it will be use in file manager module.
  • composer install
  • php artisan key:generate
  • php artisan migrate
  • php artisan db:seed
  • php artisan storage:link
  • npm install
  • npm run dev or watch or prod to re-generate the new build scripts for UI/UX

You are done! You can now login in your application using the following credentials:

IMPORTANT!!

Remove the “demo” middleware on the web routes. It can be found here: routes/web.php. this middleware if only for demo purpose to prevent viewers to modify data on a live demo site.

Additional Notes:

  • The Laravel Telescope has been removed on this base starter app from this PR. If you want to use it, you have to install it yourself.