big update base struktur tahap 1

This commit is contained in:
Wian Drs
2026-07-27 16:24:09 +07:00
parent 2b3592c4c2
commit 1dd02baa72
169 changed files with 24405 additions and 977 deletions
@@ -0,0 +1,32 @@
<?php
namespace App\Http\Requests\Tenant;
use Illuminate\Foundation\Http\FormRequest;
use Illuminate\Validation\Rule;
class IndexTenantRequest extends FormRequest
{
public function authorize(): bool
{
return true;
}
public function rules(): array
{
return [
/** Kata kunci untuk mencari kode, nama, atau email tenant. */
'search' => ['nullable', 'string', 'max:255'],
/** Filter status tenant. */
'status' => ['nullable', Rule::in(['active', 'inactive'])],
/** Nomor halaman yang ingin diambil. */
'page' => ['nullable', 'integer', 'min:1'],
/** Jumlah data per halaman, maksimal 100. */
'per_page' => ['nullable', 'integer', 'min:1', 'max:100'],
/** Kolom pengurutan data. */
'sort_by' => ['nullable', Rule::in(['id', 'tenant_code', 'tenant_name', 'email', 'status', 'created_at'])],
/** Arah pengurutan data. */
'sort_direction' => ['nullable', Rule::in(['asc', 'desc'])],
];
}
}
@@ -0,0 +1,52 @@
<?php
namespace App\Http\Requests\Tenant;
use Illuminate\Contracts\Validation\ValidationRule;
use Illuminate\Foundation\Http\FormRequest;
class StoreTenantRequest extends FormRequest
{
public function authorize(): bool
{
return true;
}
/**
* @return array<string, ValidationRule|array<mixed>|string>
*/
public function rules(): array
{
return [
'tenant_code' => [
'required',
'string',
'max:100',
'unique:tenants,tenant_code',
],
'tenant_name' => [
'required',
'string',
'max:255',
],
'phone' => [
'nullable',
'string',
'max:50',
],
'email' => [
'nullable',
'email',
'max:255',
],
'address' => [
'nullable',
'string',
],
'status' => [
'nullable',
'in:active,inactive',
],
];
}
}
@@ -0,0 +1,58 @@
<?php
namespace App\Http\Requests\Tenant;
use Illuminate\Contracts\Validation\ValidationRule;
use Illuminate\Foundation\Http\FormRequest;
use Illuminate\Validation\Rule;
class UpdateTenantRequest extends FormRequest
{
public function authorize(): bool
{
return true;
}
/**
* @return array<string, ValidationRule|array<mixed>|string>
*/
public function rules(): array
{
$tenantId = $this->route('tenant')?->id;
return [
'tenant_code' => [
'sometimes',
'required',
'string',
'max:100',
Rule::unique('tenants', 'tenant_code')->ignore($tenantId),
],
'tenant_name' => [
'sometimes',
'required',
'string',
'max:255',
],
'phone' => [
'nullable',
'string',
'max:50',
],
'email' => [
'nullable',
'email',
'max:255',
],
'address' => [
'nullable',
'string',
],
'status' => [
'sometimes',
'required',
'in:active,inactive',
],
];
}
}