ok

Mini Shell

Direktori : /home2/selectio/public_html/fms-worksuite/app/Http/Requests/ProjectMembers/
Upload File :
Current File : /home2/selectio/public_html/fms-worksuite/app/Http/Requests/ProjectMembers/StoreProjectMembers.php

<?php

namespace App\Http\Requests\ProjectMembers;

use App\Http\Requests\CoreRequest;
use Illuminate\Foundation\Http\FormRequest;

class StoreProjectMembers extends CoreRequest
{

    /**
     * Determine if the user is authorized to make this request.
     *
     * @return bool
     */
    public function authorize()
    {
        return true;
    }

    /**
     * Get the validation rules that apply to the request.
     *
     * @return array
     */
    public function rules()
    {
        return [
            'user_id.0' => 'required',
            'hourly_rate' => 'nullable|numeric',
        ];
    }

    public function messages()
    {
        return [
            'user_id.0.required' => __('messages.atleastOneValidation')
        ];
    }

}

Zerion Mini Shell 1.0