Remove TenantPropController, TenantProp model, and related requests; update API routes and migrations

This commit is contained in:
2026-06-22 16:50:02 -03:00
parent 3bb8fbfd2f
commit 0847fe1a26
7 changed files with 0 additions and 204 deletions

View File

@@ -1,25 +0,0 @@
<?php
namespace App\Domains\Tenant\Requests;
use Illuminate\Foundation\Http\FormRequest;
use Illuminate\Validation\Rule;
class StoreTenantPropRequest extends FormRequest
{
public function authorize(): bool
{
return true;
}
/**
* @return array<string, mixed>
*/
public function rules(): array
{
return [
'codigo' => ['required', 'string', 'max:255', Rule::unique('tenant_props', 'codigo')],
'prop_type' => ['required', 'string', 'max:255'],
];
}
}