PHP code example of camilord / laravel-api-controller

1. Go to this page and download the library: Download camilord/laravel-api-controller library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

camilord / laravel-api-controller example snippets


	protected $resourceSingle = UserResource::class;
	protected $resourceCollection = UserCollection::class;


public function scopeAgeNull(Builder $builder, $isNull = true){
  $isNull ? $builder->whereNull('age') : $builder->whereNotNull('age');
}

protected static $allowedScopes = [
  'fullname'
];

[
    'email' => 'equired|numeric',
]

class MyModelResource extends ApiResource
{

 protected static $allowedScopes = [
        'withTrashed',
        'onlyTrashed'
    ];
bash
php artisan vendor:publish --provider="Phpsa\LaravelApiController\ServiceProvider" --tag="config"