'required|string|max:255', 'company_email' => 'required|email|max:255', 'company_phone' => 'required|string|max:255', 'notification_email' => 'required|email|max:255', 'company_address' => 'required|string|max:500', 'default_currency_id' => 'required|numeric', 'default_currency_position' => 'required|string|max:255', 'footer_text' => 'required|string|max:255' ]; } /** * Determine if the user is authorized to make this request. * * @return bool */ public function authorize() { return Gate::allows('access_settings'); } }