Ejemplo n.º 1
0
 public function create()
 {
     $client = Client::select('id', 'var_name')->get();
     $reviceuser = User::select('id', 'var_username', 'var_userlastname')->get();
     $tecniuser = User::select('id', 'var_username', 'var_userlastname')->where('type', 'Tecnico')->get();
     $flaw = Flawcategory::select('id', 'var_category')->get();
     return view('st.create', compact(['client', 'reviceuser', 'tecniuser', 'flaw']));
 }