Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rplcodebase/laravel-test-app
Information System With Laravel
https://github.com/rplcodebase/laravel-test-app
crud hacktoberfest information laravel laravel9 php php8 system
Last synced: about 16 hours ago
JSON representation
Information System With Laravel
- Host: GitHub
- URL: https://github.com/rplcodebase/laravel-test-app
- Owner: RPLCodeBase
- Archived: true
- Created: 2022-03-10T11:52:35.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-06-23T15:32:30.000Z (over 2 years ago)
- Last Synced: 2024-09-27T20:01:11.203Z (4 months ago)
- Topics: crud, hacktoberfest, information, laravel, laravel9, php, php8, system
- Language: JavaScript
- Homepage: https://bit.ly/laravel-test-app
- Size: 6.78 MB
- Stars: 3
- Watchers: 0
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## 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
```
2. composer install
```
composer install
```
3. setup .env file
4. setup database
5. generate key
```
php artisan key:generate
```
6. migrate
```
php artisan migrate
```
7. seed
```
php artisan db:seed
```
8. run server
```
php artisan serve
```
9. run watch : watch for changes with live reload
```
npm run watch
```
10. 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
```11. Login
```
email : [email protected]
password : admin
```12. 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),
```