2016-01-06 15:23:58 +01:00
|
|
|
<?php namespace app\Http\Requests;
|
2016-01-07 16:21:13 +01:00
|
|
|
// vendor
|
2016-01-06 15:23:58 +01:00
|
|
|
use App\Http\Requests\Request;
|
|
|
|
use Illuminate\Validation\Factory;
|
|
|
|
|
|
|
|
class CreateVendorRequest extends Request
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize()
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the validation rules that apply to the request.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'vendorcontacts' => 'valid_contacts',
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function validator($factory)
|
|
|
|
{
|
|
|
|
// support submiting the form with a single contact record
|
|
|
|
$input = $this->input();
|
|
|
|
if (isset($input['vendor_contact'])) {
|
|
|
|
$input['vendor_contacts'] = [$input['vendor_contact']];
|
|
|
|
unset($input['vendor_contact']);
|
|
|
|
$this->replace($input);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $factory->make(
|
|
|
|
$this->input(), $this->container->call([$this, 'rules']), $this->messages()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|