skip to Main Content

Cpanel – Liverwire filamentphp

Please I need your help. My filaments works fine with 127.0.0.1:8000 (Via artisan serve) But, once I uploaded it to my cPanel, I got an error 404 get livewire/livewire.js. I was able to manipulate this but got another error 404…

VIEW QUESTION

LiveWire & Laravel Component: Html Not SHOW UP

I'm working with Laravel v10 and in my project I tried the following to make a custom component with livewire. I ran: php artisan make:component CounterDisplay created a new file named: resources/views/components/counter-display.blade.php which goes like this: <div> Counter Value: {{…

VIEW QUESTION

Laravel – My download button is throwing a 404 route not found

I'm trying to get my app to download an Excel file when clicking the button. I can't seem to get past this 404 route error. Route Route::get('/exportPriceList', [ProductController::class, 'exportPriceList'])->name('products.exportPriceList'); Controller use IlluminateHttpRequest; use IlluminateSupportFacadesStorage; class ProductController extends Controller { public…

VIEW QUESTION
Back To Top
Search