changeweb/Unifiedtransform

View on GitHub
app/Http/Requests/TeacherStoreRequest.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace App\Http\Requests;

use Illuminate\Foundation\Http\FormRequest;

class TeacherStoreRequest extends FormRequest
{
    /**
     * Determine if the user is authorized to make this request.
     *
     * @return bool
     */
    public function authorize()
    {
        return auth()->user()->can('create users');
    }
    
    /**
     * Get the validation rules that apply to the request.
     *
     * @return array
     */
    public function rules()
    {
        return [
            'first_name'    => 'required|string',
            'last_name'     => 'required|string',
            'email'         => 'required|string|email|max:255|unique:users',
            'gender'        => 'required|string',
            'nationality'   => 'required|string',
            'phone'         => 'required|string',
            'address'       => 'required|string',
            'address2'      => 'string',
            'city'          => 'required|string',
            'zip'           => 'required|string',
            'photo'         => 'nullable|string',
            'password'      => 'required|string|min:8',
        ];
    }
}