2020-02-28 22:57:47 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Requests\Design;
|
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
|
|
|
use App\Models\Design;
|
|
|
|
|
|
|
|
class StoreDesignRequest extends Request
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
|
|
|
|
public function authorize() : bool
|
|
|
|
{
|
|
|
|
return auth()->user()->isAdmin();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
//'name' => 'required',
|
|
|
|
'name' => 'required|unique:designs,name,null,null,company_id,'.auth()->user()->companyId(),
|
|
|
|
'design' => 'required',
|
|
|
|
];
|
|
|
|
}
|
2020-03-16 11:12:10 +01:00
|
|
|
|
|
|
|
protected function prepareForValidation()
|
|
|
|
{
|
|
|
|
$input = $this->all();
|
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
if (!array_key_exists('product', $input['design']) || is_null($input['design']['product'])) {
|
|
|
|
$input['design']['product'] = '';
|
|
|
|
}
|
2020-03-16 11:12:10 +01:00
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
if (!array_key_exists('task', $input['design']) || is_null($input['design']['task'])) {
|
|
|
|
$input['design']['task'] = '';
|
|
|
|
}
|
2020-03-16 11:12:10 +01:00
|
|
|
|
|
|
|
$this->replace($input);
|
|
|
|
}
|
2020-02-28 22:57:47 +01:00
|
|
|
}
|