add crud general settings

This commit is contained in:
arifal hidayat
2025-01-28 05:22:50 +07:00
parent 14f68c0add
commit 538cdb87ae
12 changed files with 387 additions and 61 deletions

View File

@@ -0,0 +1,33 @@
<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class UpdateGlobalSettingRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*/
public function authorize(): bool
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array<string, \Illuminate\Contracts\Validation\ValidationRule|array<mixed>|string>
*/
public function rules(): array
{
$id = $this->route('general');
return [
'key' => 'required|unique:global_settings,key,' . $id,
'value' => 'required',
'type' => 'nullable',
'description' => 'nullable'
];
}
}