https://github.com/froganbee/laragaging
This project is an app for listing Laravel gigs/jobs.
https://github.com/froganbee/laragaging
framework laravel php
Last synced: 8 months ago
JSON representation
This project is an app for listing Laravel gigs/jobs.
- Host: GitHub
- URL: https://github.com/froganbee/laragaging
- Owner: FroganBee
- Created: 2024-05-10T22:38:05.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-14T17:57:36.000Z (almost 2 years ago)
- Last Synced: 2025-07-18T19:33:58.440Z (9 months ago)
- Topics: framework, laravel, php
- Language: PHP
- Homepage:
- Size: 497 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LaraGigs app
An app for listing Laravel gigs/jobs. This project is from my YouTube "[Laravel From Scratch 2022](https://www.youtube.com/watch?v=MYyJ4PuL4pY)" course.

## Usage
### Database Setup
This app uses MySQL. To use something different, open up config/Database.php and change the default driver.
To use MySQL, make sure you install it, setup a database and then add your db credentials(database, username and password) to the .env.example file and rename it to .env
### Migrations
To create all the nessesary tables and columns, run the following
```
php artisan migrate
```
### Seeding The Database
To add the dummy listings with a single user, run the following
```
php artisan db:seed
```
### File Uploading
When uploading listing files, they go to "storage/app/public". Create a symlink with the following command to make them publicly accessible.
```
php artisan storage:link
```
### Running The App
Upload the files to your document root, Valet folder or run
```
php artisan serve
```
## License
The LaraGigs app is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).