Edit File: Loading.php
<?php namespace Mary\View\Components; use Closure; use Illuminate\Contracts\View\View; use Illuminate\View\Component; class Loading extends Component { public string $uuid; public function __construct() { $this->uuid = "mary" . md5(serialize($this)); } public function render(): View|Closure|string { return <<<'HTML' <span {{ $attributes->class("loading loading-spinner") }}></span> HTML; } }
Back