Пример #1
0
 /**
  * Show Purchasing Order Detail
  *
  * @return void
  * @author Y.Brahmantyo A.K
  **/
 public function getShow($id)
 {
     $po = po::where('idpo', str_replace('-', '/', $id))->first();
     return view('admin.transaction.purchasing.po-show')->with('po', $po);
 }