Feature #10 : Hubungan Pemilik Jaminan

This commit is contained in:
Daeng Deni Mardaeni
2024-08-14 16:49:56 +07:00
parent acd1aa09f7
commit 6ea250470d
10 changed files with 489 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
<?php
namespace Modules\Lpj\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class HubunganPemilikJaminanRequest extends FormRequest
{
/**
* Get the validation rules that apply to the request.
*/
public function rules()
: array
{
$rules = [
'name' => 'required|max:255',
];
return $rules;
}
/**
* Determine if the user is authorized to make this request.
*/
public function authorize()
: bool
{
return true;
}
}