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;
|
|
|
|
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()
|
|
|
|
{
|
|
|
|
return [
|
2019-06-26 05:25:14 +02:00
|
|
|
'logo' => 'mimes:jpeg,jpg,png,gif|max:10000', // max 10000kb
|
|
|
|
'name' => 'required',
|
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-06-17 01:58:33 +02:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2019-07-04 06:04:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|