Path : /var/www/clients/client0/web25/web/app/Http/Requests/ |
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
Current File : /var/www/clients/client0/web25/web/app/Http/Requests/ImageRequest.php |
<?php namespace App\Http\Requests; use Illuminate\Foundation\Http\FormRequest; class ImageRequest extends FormRequest { /** * Determine if the user is authorized to make this request. * * @return bool */ public function authorize() { return false; } /** * Get the validation rules that apply to the request. * * @return array<string, mixed> */ public function rules() { return [ 'url' => ['required', 'max:255', 'unique:'.Image::class], ]; } }