Download the PHP package coloredcow/laravel-mobile-api without Composer
On this page you can find all versions of the php package coloredcow/laravel-mobile-api. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download coloredcow/laravel-mobile-api
More information about coloredcow/laravel-mobile-api
Files in coloredcow/laravel-mobile-api
Package laravel-mobile-api
Short Description A Laravel package to setup mobile
License MIT
Homepage https://github.com/coloredcow/laravel-gsuite
Informations about the package laravel-mobile-api
Laravel Mobile API
Prerequisite
This package requires a basic understanding of Laravel Passport.
Installation
- Add this package in your project.
- Now add the trait
CanHaveAPIEndPoints
in the controller that will contribute in the mobile service. You can also add this trait in the base controller and use it. Now you can use returnFormattedResponse method to send the respose. This function will check the request and send the reponse accordingly.
Handling web responses only
The first argument is the array of data you pass to the view. The second argument is the view name.
Handling both web and API responses
Use two closures for sending different responses for web and api.
Exception Handling
For clear error responses you need to add the trait in the App\Exceptions\Handler class and add the following code snippt in report method.
Auth Middleware
If you want to set the auth user for every authenticated route then add RestApiMiddleware
in your project and apply in on routes.
In kernel.php
In routes/api.php file