Files
2026-03-11 17:53:15 -04:00

14 lines
186 B
PHP

<?php
namespace App\Services\Frontend;
class FrontendPageService
{
public function page(string $name): array
{
return [
'page' => $name,
];
}
}