PHP code example of mawuekom / laravel-request-customizer

1. Go to this page and download the library: Download mawuekom/laravel-request-customizer 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-request-customizer example snippets


namespace App\Http\Requests;

use Mawuekom\RequestCustomizer\FormRequestCustomizer;

class CreateUserRequest extends FormRequestCustomizer
{
    /**
     * 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'          => 'lass
            ]
        ];
    }
}