コード例 #1
0
ファイル: ventas.php プロジェクト: vdjkelly/laravel
 public static function crear_pdf($id)
 {
     $venta = ventas::with('venta_detalle.productos_configurables', 'clientes', 'tiendas.company', 'user', 'ingreso_venta.formas_pago')->find($id);
     $cuenta = cuentas_bancarias::where('principal', 1)->first();
     $view = view('app/ventas/ventas_pdf', compact('venta', 'cuenta'))->render();
     $pdf = App::make('dompdf.wrapper');
     $pdf->loadHTML($view);
     return $pdf;
 }
コード例 #2
0
ファイル: VentaController.php プロジェクト: vdjkelly/laravel
 public function imprimir($id)
 {
     $venta = ventas::with('venta_detalle.productos_configurables', 'clientes', 'tiendas.company', 'user', 'ingreso_venta.formas_pago')->find($id);
     $cuenta = cuentas_bancarias::where('principal', 1)->first();
     //dd($cuenta);
     return view('app/ventas/ventas_print', compact('venta', 'cuenta'));
 }