Esempio n. 1
0
 /**
  * Show the application dashboard to the user.
  *
  * @return Response
  */
 public function index()
 {
     $province = new Province();
     $district = new District();
     $ward = new Ward();
     $provinces = $province->_getAll();
     $districts = $district->_getByProvince('01');
     $wards = $ward->_getByDistrict('001');
     return view('company.index', compact('provinces'));
 }