Skip to content
This repository has been archived by the owner on Jun 24, 2023. It is now read-only.

RPLCodeBase/laravel-test-app

Repository files navigation

Laravel Test Application

How to use

Require composer and php8 or higher

  1. Clone Project
git clone https://github.com/RPLCodeBase/laravel-test-app.git
  1. composer install
composer install
  1. setup .env file
  2. setup database
  3. generate key
php artisan key:generate
  1. migrate
php artisan migrate
  1. seed
php artisan db:seed
  1. run server
php artisan serve
  1. run watch : watch for changes with live reload
npm run watch
  1. 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
  1. Login
email : admin@test.com
password : admin
  1. 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),