Created
October 14, 2018 04:12
-
-
Save adbrsln/162d003fe22aa9507b2fb1c4b390e1a9 to your computer and use it in GitHub Desktop.
controller
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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