fix(git): tracking issue due to case sensitivity

This commit is contained in:
peaklabs-dev
2025-08-03 22:36:38 +02:00
parent 3e577dbb27
commit 723f14e6f6

View File

@@ -0,0 +1,26 @@
<?php
namespace App\View\Components\Services;
use App\Models\Service;
use Closure;
use Illuminate\Contracts\View\View;
use Illuminate\View\Component;
class Advanced extends Component
{
/**
* Create a new component instance.
*/
public function __construct(
public ?Service $service = null
) {}
/**
* Get the view / contents that represent the component.
*/
public function render(): View|Closure|string
{
return view('components.services.advanced');
}
}