public function obtenerDatosPlanillaEspecial($central_id, $planilla_id) { $planilla = PlanillaEspecial::find($planilla_id); $planilla['tipo'] = 'especial'; $planilla->load('viaje.conductor', 'central'); return JsonResponse::create($planilla); }
public function getPlanilla($central_id, $planilla_id) { $tipoEmpresa = $this->verificartipoCentral($central_id); if ($tipoEmpresa->empresa->tipo == '1') { $planilla = PlanillaEspecial::find($planilla_id); $planilla['tipo'] = 'especial'; $planilla->load('viaje.conductor', 'central'); return JsonResponse::create($planilla); } else { $planilla = Planilla::find($planilla_id); $planilla['tipo'] = 'normal'; $planilla->load('viaje.conductor', 'central.ciudad.departamento'); return JsonResponse::create($planilla); } }