D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
hms.dentostock.com
/
app
/
Http
/
Requests
/
Filename :
UpdateFrontSettingRequest.php
back
Copy
<?php namespace App\Http\Requests; use App\Models\FrontSetting; use Illuminate\Foundation\Http\FormRequest; use Illuminate\Validation\ValidationException; /** * Class UpdateFrontSettingRequest */ class UpdateFrontSettingRequest extends FormRequest { /** * @throws ValidationException */ public function prepareForValidation() { $description = trim(request()->get('about_us_description')); if (empty($description)) { throw ValidationException::withMessages([ 'about_us_description' => __('messages.front_setting.about_us_description_required'), ]); } } /** * Determine if the user is authorized to make this request. */ public function authorize(): bool { return true; } /** * Get the validation rules that apply to the request. */ public function rules(): array { return FrontSetting::$rules; } }