Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sh1hab/laravel--blog
Laravel BLOG CRUD with PHP
https://github.com/sh1hab/laravel--blog
blog crud database laravel rdbms
Last synced: about 16 hours ago
JSON representation
Laravel BLOG CRUD with PHP
- Host: GitHub
- URL: https://github.com/sh1hab/laravel--blog
- Owner: sh1hab
- Created: 2021-08-06T16:14:33.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-12-15T16:03:04.000Z (about 3 years ago)
- Last Synced: 2024-11-15T03:33:44.177Z (2 months ago)
- Topics: blog, crud, database, laravel, rdbms
- Language: PHP
- Homepage:
- Size: 118 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Laravel Blog CRUD
This is a Laravel Blog CRUD API Application Built with Laravel, PHP, MySql
## Project Setup
The following are to be considered when running this Application:
### Running the project
- Open the terminal and navigate to Project folder
- Run
composer install
command to install required dependencies - Copy .env.example to .env and update the DB_DATABASE, DB_PASSWORD, DB_USERNAME to credentials according your to your database credentials
- Run the
php artisan key:generate
command to generate an application key. - Run the
php artisan migrate:fresh --seed
command to run migrations and seed. - Run the
php artisan passport:install
command to install passport. - Run the
php artisan serve
command and navigate to the url provided to start using the application.
### Default account
[email protected]
is the default admin email and password
### API Documentation
https://documenter.getpostman.com/view/14023069/TzskE3b4 Here is the API Documentation
### Tests
Run the php artisan test
to run the tests