first(); if (!$order) { abort(404, 'Production Order not found'); } else{ $fromSerial = (int) $order->from_serial_number; $toSerial = (int) $order->to_serial_number; $itemCode = $order->item->code ?? ''; $itemDes = $order->item->description ?? ''; $stickers = []; for ($i = $fromSerial; $i <= $toSerial; $i++) { $serial = str_pad($i, 6, '0', STR_PAD_LEFT); $qrData = $itemCode . '|' . $serial; Log::info($qrData); // $qrBase64 = base64_encode( // QrCode::format('png')->size(100)->generate($qrData) // ); $qrCode = new QrCode($qrData); $output = new Output\Png; $qrBinary = $output->output($qrCode, 100); $qrBase64 = base64_encode($qrBinary); $stickers[] = [ 'serial' => $serial, 'qr' => 'data:image/png;base64,' . $qrBase64, 'production_order' => $production_order, 'description' => $itemDes ?? '' ]; } $pdf = Pdf::loadView('production-orders.print', compact('stickers')) ->setPaper([0, 0, 170, 40]); return $pdf->stream('stickers.pdf'); } } // public function printpanel($production_order){ // $order = ProductionOrder::where('production_order', $production_order)->first(); // if (!$order) { // abort(404, 'Production Order not found'); // } // else{ // $fromSerial = (int) $order->from_serial_number; // $toSerial = (int) $order->to_serial_number; // $itemCode = $order->item->code ?? ''; // $itemDes = $order->item->description ?? ''; // $year = // $month = // $stickers = []; // for ($i = $fromSerial; $i <= $toSerial; $i++) // { // $serial = str_pad($i, 6, '0', STR_PAD_LEFT); // $qrData = $serial . '/' . $itemCode . '/' . $serial . '/' . $itemCode; // $qrBase64 = base64_encode( // QrCode::format('png')->size(100)->generate($qrData) // ); // $stickers[] = [ // 'serial' => $serial, // 'qr' => 'data:image/png;base64,' . $qrBase64, // 'production_order' => $production_order, // 'description' => $itemDes ?? '' // ]; // } // $pdf = Pdf::loadView('production-orders.printpallet', compact('stickers')) // ->setPaper([0, 0, 170, 40]); // return $pdf->stream('stickers.pdf'); // } // } /** * Store a newly created resource in storage. */ public function store(Request $request) { // } /** * Display the specified resource. */ public function show(string $id) { // } /** * Update the specified resource in storage. */ public function update(Request $request, string $id) { // } /** * Remove the specified resource from storage. */ public function destroy(string $id) { // } }