/
dimamir
/
coolify
Обзор
Документация
Войти
/
dimamir
/
coolify
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
app/View/Components/Services/Explanation.php
26 строк
478 B
Andras Bacsai
wip: services
22 сен 2023, 13:08
22 сен 2023, 13:08
c91f426
Код
Авторство
О чём код?
<?php namespace App\View\Components\Services; use Closure; use Illuminate\Contracts\View\View; use Illuminate\View\Component; class Explanation extends Component { /** * Create a new component instance. */ public function __construct() { // } /** * Get the view / contents that represent the component. */ public function render(): View|Closure|string { return view('components.services.explanation'); } }