Require composer
and php8 or higher
- Clone Project
git clone https://github.com/RPLCodeBase/laravel-test-app.git
- composer install
composer install
- setup .env file
- setup database
- generate key
php artisan key:generate
- migrate
php artisan migrate
- seed
php artisan db:seed
- run server
php artisan serve
- run watch : watch for changes with live reload
npm run watch
- run storage link : link storage to public
php artisan storage:link
if image upload is not working, change storage path in .env file
APP_URL=http://127.0.0.1:8000
- Login
email : admin@test.com
password : admin
- Debug Application with Telescope
http://127.0.0.1:8000/telescope
how to disable Telescope setup file config/telescope.php change enabled to false
enable = 'enabled' => env('TELESCOPE_ENABLED', true),
disable = 'enabled' => env('TELESCOPE_ENABLED', false),