Example #1
0
 public function getCobrarcredito()
 {
     $creditos = Credito::where('estado', '=', 1)->with(['pedido', 'pedido.habitacion'])->get();
     return View::make('caja.cobrarcredito', compact('creditos'));
 }