load('patientRecord'); $type = $request->query('type', 'prescription'); return view('prints.prescription', [ 'prescription' => $prescription, 'type' => $type, ]); } public function printAdmission(Prescription $prescription) { $prescription->load('patientRecord'); $patient = $prescription->patientRecord; $appointment = $patient?->surgeryAppointment?->load('surgeryCenter'); $centerName = ''; $surgeryDate = ''; if ($appointment) { try { $surgeryDate = Jalalian::fromCarbon($appointment->surgery_date)->format('Y/m/d'); } catch (\Throwable) { $surgeryDate = $appointment->surgery_date?->format('Y-m-d') ?? ''; } $centerName = $appointment->surgeryCenter?->name ?? ''; } return view('prints.prescription-admission', [ 'prescription' => $prescription, 'centerName' => $centerName, 'surgeryDate' => $surgeryDate, ]); } public function printPatientLab(Patient $patient) { return view('prints.patient-lab', [ 'patient' => $patient, 'issueDate' => Jalalian::now()->format('Y/m/d'), ]); } public function printSurgeryAdmission(Patient $patient) { $appointment = $patient->surgeryAppointment?->load('surgeryCenter'); $surgeryDate = ''; $centerName = ''; if ($appointment) { try { $surgeryDate = Jalalian::fromCarbon($appointment->surgery_date)->format('Y/m/d'); } catch (\Throwable) { $surgeryDate = $appointment->surgery_date?->format('Y-m-d') ?? ''; } $centerName = $appointment->surgeryCenter?->name ?? ''; } return view('prints.surgery-admission', [ 'patient' => $patient, 'surgeryDate' => $surgeryDate, 'centerName' => $centerName, ]); } }