You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
263 B
PHTML
21 lines
263 B
PHTML
3 months ago
|
<?php
|
||
|
|
||
|
namespace App\Http\Requests;
|
||
|
|
||
|
use Illuminate\Foundation\Http\FormRequest;
|
||
|
|
||
|
class CustomerRequest extends FormRequest
|
||
|
{
|
||
|
public function rules()
|
||
|
{
|
||
|
return [
|
||
|
|
||
|
];
|
||
|
}
|
||
|
|
||
|
public function authorize()
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
}
|