invoiceninja/app/Http/Requests/Company/UpdateCompanyRequest.php

50 lines
1 KiB
PHP
Raw Normal View History

2019-06-17 09:58:33 +10: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;
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 15:17:57 +10:00
2019-06-17 09:58:33 +10:00
return [
2019-10-07 22:06:23 +11:00
'company_logo' => 'mimes:jpeg,jpg,png,gif|max:10000', // max 10000kb
2019-07-04 14:04:01 +10:00
'industry_id' => 'integer|nullable',
'size_id' => 'integer|nullable',
'country_id' => 'integer|nullable',
'work_email' => 'email|nullable',
2019-10-05 08:15:57 +10:00
'settings' => 'json',
2019-06-17 09:58:33 +10:00
];
}
2019-07-04 14:04:01 +10:00
}