Skip to content

Instantly share code, notes, and snippets.

@adbrsln
Created October 14, 2018 04:12
Show Gist options
  • Save adbrsln/162d003fe22aa9507b2fb1c4b390e1a9 to your computer and use it in GitHub Desktop.
Save adbrsln/162d003fe22aa9507b2fb1c4b390e1a9 to your computer and use it in GitHub Desktop.
controller
public function eDoc2a($id)
{
// return view('co::eDoc2.show2');
$am = DB::table('b_bancimain')
->where('bbanci_id', $id)->get();
$side = DB::table('v_edoc2_side')
->first();
$data['meta'] = $side;
$data['banci_data'] = $am;
// dd($data);
return view('co::eDoc2.show',compact('data'));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment