Laravel Playground
Laravel with Repository & Service Pattern Implementation
Setup
- Run
git clone https://github.com/marco-bizmatesph/laravel-playground.git
to clone the project - Run
composer install
in the root directory of the project. - Copy the
.env.example
contents to.env
- Set the database config in your
.env
file - Run
php artisan migrate --seed
to build the database and seed the initial data. - Run
php artisan key:generate
to generate keys for the project - Run
php artisan serve
to launch the application. - The project includes Telescope out of the box. This will allow you to see incoming requests and review how the queries are executed in the database. To access this, simple go to
/telescope
in the browser.
API Resource
The API Resource is the most common API endpoints showcasing to listing of all records, showing of a single record by id, creating a new record, updating an existing record, and deleting a record.
GETIndex
http://laravel-playground.local/api/user
Display a listing of the resource.
SQL Query:
HEADERS
Accept
Example Request
Index
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers
GETShow
http://laravel-playground.local/api/user/1
Display the specified resource.
SQL query:
HEADERS
Accept
Example Request
Show
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers
POSTStore
http://laravel-playground.local/api/user
Store a newly created resource in storage.
SQL Query:
HEADERS
Content-Type
Accept
Bodyurlencoded
name
email
password
password_confirmation
Example Request
Store
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers