Files
Vari f8d1f3acdc Small Finishing changes to the Pak manager admin tool.
Changed frontend to new frontend stuff and deleted old components.

Cleaned up some code in the file manager admin tool.
2024-08-16 00:01:06 +02:00

27 lines
464 B
PHP

<?php
namespace App\View\Components\Layouts;
use Closure;
use Illuminate\Contracts\View\View;
use Illuminate\View\Component;
class Admin 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.layouts.admin');
}
}