skip to Main Content

How to sort multiple foreach from laravel blade

I have 2 different tables data has order_id and I want to sort it in laravel blade foreach. My Controller: $questions = Question::where('quiz_id', $quiz->id)->orderBy('order_id', 'asc')->get(); $explanations = Explanations::where('quiz_id', $quiz->id)->orderBy('order_id', 'asc')->get(); My Blade: (I want to sort this 2 foreach by…

VIEW QUESTION

print variable value inside string quote – Laravel

I want to print variable value inside string quote this is my variable var id = $(this).val(); how can i print this variable to this string $('#button_cetak').html('<a href="{{route('report.pdf',[$user->nip,'//this is place i wanna print'])}}" class="btn btn-warning btn-block"><i class="fas fa-print"></i> Cetak</a>'); thanks

VIEW QUESTION

I want to send password reset request to laravel API from vue.js component – PHP Versions

I am making laravel API to reset password by diverting laravel standard password reset function. This is controller <?php namespace AppHttpControllersApiAuth; use AppHttpControllersController; use IlluminateFoundationAuthResetsPasswords; use IlluminateHttpRequest; use IlluminateSupportFacadesPassword; use IlluminateSupportFacadesLog; class ResetPasswordController extends Controller { use ResetsPasswords; public function…

VIEW QUESTION
Back To Top
Search