コード例 #1
0
ファイル: CajaController.php プロジェクト: tavo7/hotel
 public function postRegistrarIngreso()
 {
     $ingreso = Ingreso::create(['importetotal' => Input::get('importetotal'), 'descripcion' => Input::get('descripcion'), 'detallecaja_id' => $this->detallecaja->id]);
     return Redirect::to('/caja');
 }