%PDF- %PDF-
Mini Shell

Mini Shell

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

<?php

namespace App\Http\Requests\Category;

use App\Http\Requests\BaseRequest;

class CategoryUpdateRequest 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 [
            'name'        => 'required|string|unique:categories,name,' . $this->get('id'),
            'description' => 'required|string',
            'parent_id'   => 'nullable|integer|exists:categories,id'
        ];
    }

    public function getSanitationRules()
    {
        return [];
    }

}

Zerion Mini Shell 1.0