fadlyshafa

Untitled

Feb 10th, 2020
558
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.40 KB | None | 0 0
  1. public function cetak($id){
  2.         try {
  3.             $dt = Purchase_order::with('suppliers')->find($id);
  4.  
  5.             $pdf = PDF::loadview('admin.po.pdf',compact('dt'))->setPaper('a4', 'landscape');
  6.             return $pdf->stream();
  7.  
  8.         } catch (\Exception $e) {
  9.             \Session::flash('gagal',$e->getMessage().' ! '.$e->getLine());
  10.         }
  11.  
  12.         return redirect()->back();
  13.     }
Advertisement
Add Comment
Please, Sign In to add comment