This commit is contained in:
2025-05-28 22:11:41 +05:00
parent 10e6a6bbed
commit 72745e6360
3 changed files with 5 additions and 6 deletions

View File

@@ -19,7 +19,7 @@ class ApiTesterController extends Controller
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS => '{ "idSeria": "I-AS", "idNo": "314567", "clientType": "recipient", "cardMaskNumber": "993403******3258", "expDate": "07/49", "fromDate" : "01.01.2020", "toDate" : "09.05.2025" }',
CURLOPT_POSTFIELDS => '{ "idSeria": "I-AH", "idNo": "152304", "clientType": "recipient", "cardMaskNumber": "993403******8088", "expDate": "02/34", "fromDate" : "01.01.2020", "toDate" : "09.05.2025" }',
CURLOPT_HTTPHEADER => [
'Authorization: Basic dGJ1c2VyOlFBWndzeDEyMw==',
'Content-Type: application/json',

View File

@@ -144,14 +144,14 @@ class DownloadCardTransaction extends Action
{
$mpdf = new Mpdf;
// Write HTML content
// Write HTML content...
$html = Blade::render('orders.cards.card-transaction.download-card-transaction', [
'data' => $data,
]);
$mpdf->WriteHTML($html);
// Save the PDF to a file
// Save the PDF to a file...
$mpdf->Output($fileDest, \Mpdf\Output\Destination::FILE);
}
}