Ниже приводится динамическая c кнопка Datatable.
<button type="button" id="stud_info_download" class="btn btn-info btn-circle" onclick='download_stud_info(this.id)'><i class="fa fa-arrow-down" data-toggle="modal" data-target="#invoice" aria-hidden="true"></i></button>
Ниже следует ajax вызов.
$(document).ready(function download_invoice() {
$.ajax({
url: "download_stud_info" + id,
method: "POST",
});
});
Вот маршрут для того же.
Route::post('download_stud_info/{id}','StudentRegistrationController@download_info');
Ниже приведен блейд-файл, в котором я хочу установить данные из базы данных.
<tr>
<td colspan="7" style=""><img src="assets_admin/images/workfreaks_logos.jpg" style="width: 250px; height: 250px;"> </td>
<td width="425" class="text-center">
<h4>Invoice #: WCINV316</h4>
<h4 class="font-bold" style="font-size: 30px"><i class="fa fa-inr" aria-hidden="true"></i>25,200.00,</h4>
<p class="mt-4"><b>D.O.B: {{$download->DOB}}</b></p>
</tr>
Может кто-нибудь помочь, пожалуйста?