18 lines
387 B
PHP
Executable File
18 lines
387 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Containers\Main\UI\WEB\Resources;
|
|
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
|
|
class MainPageResource extends JsonResource
|
|
{
|
|
public function toArray($request)
|
|
{
|
|
return [
|
|
'educations' => $this->educations,
|
|
'posts' => $this->posts,
|
|
'events' => $this->events,
|
|
'seo' => $this->seo,
|
|
];
|
|
}
|
|
} |