skip to Main Content

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