HOME


Mini Shell 1.0
DIR: /home/cardxfeb/public_html/app/Http/Requests/
Upload File :
Current File : //home/cardxfeb/public_html/app/Http/Requests/CreateScheduleAppointmentRequest.php
<?php

namespace App\Http\Requests;

use App\Models\ScheduleAppointment;
use Illuminate\Foundation\Http\FormRequest;

class CreateScheduleAppointmentRequest extends FormRequest
{
    /**
     * Determine if the user is authorized to make this request.
     */
    public function authorize(): bool
    {
        setLocalLang(getLocalLanguage());

        return true;
    }

    /**
     * Get the validation rules that apply to the request.
     */
    public function rules(): array
    {
        return ScheduleAppointment::$rules;
    }

    public function messages(): array
    {
        return [
            'phone.min' => 'Phone must be a number',
        ];
    }
}