skip to Main Content

Laravel got route list issue

I am getting this error: Error: Ziggy error: route 'contract/generatePDF?id=517&pickupKM=0' is not in the route list. but is defined in the web.php: GET|HEAD contract/generatePDF Route::get('contract/generatePDF', [AppHttpControllersContractController::class, 'generatePDF'])->name('contract.generatePDF'); and from the vue I am calling this function: router.visit(route("contract/generatePDF?id="+props.contract.id+"&pickupKM="+pickupKM)); also tried like…

VIEW QUESTION

Detecting when Laravel Dusk is running

Often in Laravel I need to detect the environment to avoid triggering certain code while running tests, like logging or sending an email: if (!app()->environment("testing")) { Mail::to($email)->queue(new WelcomeEmail($transaction->id)); } This works fine when the environment is set to testing in…

VIEW QUESTION

laravel input paleholder does not show

I am using a form both for editing & creating, and have the below input: <div class="input-group col-sm-6 ml-sm-n2"> <div class="input-group-append"> <div class="input-group-text border-right-0 rounded-left" style="border-color:#006600;"> <span class="text-darkgreen fas fa-address-card"></span> </div> </div> <input type="text" style="border-color:#006600;" class="form-control @error('firstname') is-invalid @enderror" id="firstname"…

VIEW QUESTION
Back To Top
Search