1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-06 03:02:34 +01:00
invoiceninja/app/Http/Requests/Company/UpdateCompanyRequest.php

51 lines
1.1 KiB
PHP
Raw Normal View History

2019-06-17 01:58:33 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com)
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\Http\Requests\Company;
use App\Http\Requests\Request;
2019-10-10 03:01:38 +02:00
use App\Http\ValidationRules\ValidSettingsRule;
2019-06-17 01:58:33 +02:00
use Illuminate\Support\Facades\Log;
use Illuminate\Validation\Rule;
class UpdateCompanyRequest extends Request
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize() : bool
{
return auth()->user()->can('edit', $this->company);
}
public function rules()
{
2019-10-03 07:17:57 +02:00
2019-06-17 01:58:33 +02:00
return [
2019-10-07 13:06:23 +02:00
'company_logo' => 'mimes:jpeg,jpg,png,gif|max:10000', // max 10000kb
2019-07-04 06:04:01 +02:00
'industry_id' => 'integer|nullable',
'size_id' => 'integer|nullable',
'country_id' => 'integer|nullable',
'work_email' => 'email|nullable',
2019-10-10 03:01:38 +02:00
'settings' => new ValidSettingsRule(),
2019-06-17 01:58:33 +02:00
];
}
2019-07-04 06:04:01 +02:00
}