D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
hms.dentostock.com
/
app
/
Http
/
Requests
/
Filename :
UpdateServiceRequest.php
back
Copy
<?php namespace App\Http\Requests; use App\Models\Service; use Illuminate\Foundation\Http\FormRequest; class UpdateServiceRequest extends FormRequest { /** * 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 { $rules = Service::$rules; $rules['name'] = 'required|unique:services,name,'.$this->route('service')->id; return $rules; } }