PATH:
home
/
rwabteecom
/
project_11
/
app
/
View
/
Components
/
Button
/
Editing: LoadingBtn.php
<?php namespace App\View\Components\Button; use Illuminate\View\Component; use Illuminate\View\View; class LoadingBtn extends Component { public function __construct(public readonly string $title, public readonly ?string $color = "primary") { } public function render(): View { return view('components.button.loading-btn'); } }
SAVE
CANCEL