skip to Main Content

Laravel – Livewire component update with new data

I need help with the Livewire component update based on the select dropdown. class FutureTreeMapChart extends Component { public $segment = 'N50'; public $expiry = '2024-02-25'; public $data; public function fetchTreeMap() { if (!empty($this->segment) && !empty($this->expiry)) { .....some codes to…

VIEW QUESTION

Laravel project throw an error 404 Not Found

i am getting an error 404 not found when accessing home.blade.php located in resources/views here's the controller called postsController <?php namespace AppHttpControllers; use IlluminateSupportFacadesDB; use IlluminateViewView; class postsController extends Controller { /** * */ public function index(): View { //$posts…

VIEW QUESTION
Back To Top
Search