chore(metadata): remove legacy-era metadata sources

This commit is contained in:
Darko Gjorgjijoski
2026-08-21 10:27:22 +02:00
parent 6372373e81
commit 167c504b21
15 changed files with 0 additions and 941 deletions
@@ -1,29 +0,0 @@
<?php
namespace App\Domains\Metadata\Http\Resources;
use App\Domains\Accounts\Http\Resources\CompanyResource;
use Illuminate\Http\Request;
use Illuminate\Http\Resources\Json\JsonResource;
class NoteResource extends JsonResource
{
/**
* Transform the resource into an array.
*
* @param Request $request
*/
public function toArray($request): array
{
return [
'id' => $this->id,
'type' => $this->type,
'name' => $this->name,
'notes' => $this->notes,
'is_default' => $this->is_default,
'company' => $this->when($this->company()->exists(), function () {
return new CompanyResource($this->company);
}),
];
}
}