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,26 +0,0 @@
<?php
namespace App\Domains\Tenant\Resources;
use Illuminate\Http\Request;
use Illuminate\Http\Resources\Json\JsonResource;
/**
* @mixin \App\Domains\Tenant\Models\TenantProp
*/
class TenantPropResource extends JsonResource
{
/**
* @return array<string, mixed>
*/
public function toArray(Request $request): array
{
return [
'id' => $this->id,
'codigo' => $this->codigo,
'prop_type' => $this->prop_type,
'created_at' => $this->created_at,
'updated_at' => $this->updated_at,
];
}
}