mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-05 18:52:44 +01:00
0e12b63c95
* Fixes for tests * Working on PDF tables * Fixes for null values in designs * Refactoring entity variables for PDF * Fixes for pdf variables * Minor fixes for designs * Working on variable replacement for tables * Refactoring designs * Refactoring designs * Refactoring design implementation * Working on refactoring designs * Serve tailwind locally * Design changes
52 lines
1.2 KiB
PHP
52 lines
1.2 KiB
PHP
<?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',
|
|
];
|
|
}
|
|
|
|
protected function prepareForValidation()
|
|
{
|
|
$input = $this->all();
|
|
|
|
if(!array_key_exists('product', $input['design']) || is_null($input['design']['product']))
|
|
$input['design']['product'] = '';
|
|
|
|
if(!array_key_exists('task', $input['design']) || is_null($input['design']['task']))
|
|
$input['design']['task'] = '';
|
|
|
|
$this->replace($input);
|
|
}
|
|
}
|