I extended from ModalComponent but still I am getting an error "Exception
[App\Http\Livewire\EditPriceAlertException] does not implement [LivewireUI\Modal\Contracts\ModalComponent] interface."
Anybody can point me in the right direction to solve this?
<?php
namespace App\Http\Livewire;
use LivewireUI\Modal\ModalComponent;
class EditPriceAlertException extends ModalComponent
{
public function render()
{
return view('livewire.edit-price-alert-exception');
}
}
I extended from ModalComponent but still I am getting an error "Exception
[App\Http\Livewire\EditPriceAlertException] does not implement [LivewireUI\Modal\Contracts\ModalComponent] interface."
Anybody can point me in the right direction to solve this?