예제 #1
0
파일: fleets.php 프로젝트: acmadi/diantaksi
 public function post_add()
 {
     $input = Input::all();
     try {
         Fleet::create($input);
         return Redirect::to('fleets');
     } catch (Exception $e) {
         return 'Error Insert';
     }
 }