mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
fddcc0fefd
This will break a ton of things
29 lines
626 B
PHP
29 lines
626 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests;
|
|
use App\Helpers\Helper;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
abstract class Request extends FormRequest
|
|
{
|
|
protected $rules = [];
|
|
|
|
public function rules()
|
|
{
|
|
return $this->rules;
|
|
}
|
|
|
|
public function response(array $errors)
|
|
{
|
|
if ($this->ajax() || $this->wantsJson())
|
|
{
|
|
return Helper::formatStandardApiResponse('error', null, $errors);
|
|
}
|
|
|
|
return $this->redirector->to($this->getRedirectUrl())
|
|
->withInput($this->except($this->dontFlash))
|
|
->withErrors($errors, $this->errorBag);
|
|
}
|
|
}
|