PHP code example of mawuekom / laravel-custom-form-request
1. Go to this page and download the library: Download mawuekom/laravel-custom-form-request 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/ */
mawuekom / laravel-custom-form-request example snippets
namespace App\Http\Requests;
use Mawuekom\CustomFormRequest\Requests\SanitizeFormRequest;
class CreateUserRequest extends SanitizeFormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize(): bool
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules(): array
{
return [
'name' => ' ]
];
}
}
namespace App\Http\Requests;
use Mawuekom\CustomFormRequest\Requests\SanitizeApiFormRequest;
class CreateUserRequest extends SanitizeApiFormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize(): bool
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules(): array
{
return [
'name' => ' ]
];
}
}