user()->can('create', ENTITY_EXPENSE_CATEGORY); } /** * Get the validation rules that apply to the request. * * @return array */ public function rules() { return [ 'name' => sprintf('required|unique:expense_categories,name,,id,account_id,%s', $this->user()->account_id), ]; } }