Tailwind + Logo

This commit is contained in:
Rico van Zelst
2023-10-25 22:40:15 +02:00
parent cc882c4488
commit 23c31f88c5
20 changed files with 3460 additions and 133 deletions

View File

@@ -0,0 +1,26 @@
<?php
namespace App\View\Components;
use Closure;
use Illuminate\Contracts\View\View;
use Illuminate\View\Component;
class logo 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.logo');
}
}