本文整理汇总了PHP中Empleado::all方法的典型用法代码示例。如果您正苦于以下问题:PHP Empleado::all方法的具体用法?PHP Empleado::all怎么用?PHP Empleado::all使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Empleado
的用法示例。
在下文中一共展示了Empleado::all方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getAll
function getAll(Request $request, Response $response)
{
$response = $response->withHeader('Content-type', 'application/json');
$data = Empleado::all();
if (count($data) == 0) {
$response = $response->withStatus(404);
}
$response->getBody()->write($data);
return $response;
}
示例2: home
public function home()
{
$agente = Agente::find(1);
$totalAgente = DB::table('agente')->count();
$iva = DB::table('impuesto')->where('estatus', '=', 'actual')->first();
date_default_timezone_set('America/Caracas');
$dia = date('d');
$mes = date('m');
$anio = date('Y');
$hoy = $anio . '-' . $mes . '-' . $dia;
$mesActual = $anio . '-' . $mes;
$reportesIva = DB::table('reportes')->orderBy('id', 'DESC')->where('fecha', '=', $hoy)->get();
$reportesTodos = DB::table('reportes')->orderBy('n_comp', 'desc')->get();
$proveedores = Proveedor::all();
$totalDia = 0;
$totalMes = 0;
$contador = 0;
$reportesIslr = DB::table('reportesislr')->where('fecha', '=', $hoy)->orderBy('fecha', 'desc')->get();
$empleados = Empleado::all();
$reportesIslrTodos = DB::table('reportesislr')->orderBy('fecha', 'desc')->get();
// Suscripcion
$diaLicencia = date('d', strtotime($agente->hasta));
$mesLicencia = date('m', strtotime($agente->hasta));
$anioLicencia = date('Y', strtotime($agente->hasta));
$licencia = date('Y-m-d', strtotime($agente->hasta));
$fechaHoy = date('Y-m-d');
$datetime1 = new DateTime($fechaHoy);
$datetime2 = new DateTime($licencia);
$interval = $datetime1->diff($datetime2);
$resta = $interval->format('%R%a');
$diasRestante = str_replace("+", "", $resta);
//dd($diasRestante);
$hoyLicencia = date('d-m-Y');
if ($hoyLicencia == $diaLicencia . '-' . $mesLicencia . '-' . $anioLicencia) {
$mensaje = '<div class="alert alert-warning">
<button type="button" class="close" data-dismiss="alert">×</button>
<p>Hasta hoy ' . date("d/m/Y", strtotime($hoyLicencia)) . ' puedes usar la aplicación</p>
</div>';
} elseif ($diasRestante <= 30) {
$mensaje = '<div class="alert alert-warning">
<button type="button" class="close" data-dismiss="alert">×</button>
<p>Te quedan ' . $diasRestante . ' días de suscripción, Por favor ponte en contacto con <b>joserph.a@gmail.com<b></p>
</div>';
} else {
$mensaje = '';
}
if (is_null($iva)) {
$iva = 'vencido';
}
return View::make('home', array('agente' => $agente, 'totalAgente' => $totalAgente, 'iva' => $iva, 'reportesIva' => $reportesIva, 'proveedores' => $proveedores, 'reportesTodos' => $reportesTodos, 'reportesIslr' => $reportesIslr, 'empleados' => $empleados, 'reportesIslrTodos' => $reportesIslrTodos))->with('contador', $contador)->with('totalDia', $totalDia)->with('totalMes', $totalMes)->with('hoy', $hoy)->with('mes', $mes)->with('anio', $anio)->with('mensaje', $mensaje);
//return var_dump($reportesTodos);
}
示例3: show
/**
* Display the specified resource.
*
* @param int $id
* @return Response
*/
public function show($id)
{
$reportesislr = Reporteislr::find($id);
if (is_null($reportesislr)) {
return Redirect::route('islr-reportes.index')->with('global', '<i class="fa fa-exclamation fa-fw x3"></i> Pagina no encontrada');
}
$users = User::all();
$agente = Agente::find(1);
$proveedor = DB::table('empleados')->where('id', '=', $reportesislr->id_empleado)->first();
$empleados = Empleado::all();
$totalPagosEmpleado = DB::table('facturasislr')->where('tipo', '=', 'empleado')->count();
$totalFacturasProveedor = DB::table('facturasislr')->where('tipo', '=', 'proveedor')->count();
$facturasCount = db::table('facturasislr')->where('id_reporteislr', '=', $id)->count();
//$facturasislr = new Facturaislr;
$items = DB::table('facturasislr')->where('id_reporteislr', '=', $id)->get();
//$facts = DB::table('facturasislr')->where('id_reporteislr', '=', $id)->get();
$contador = 0;
return View::make('reportesislr.show', array('reportesislr' => $reportesislr, 'users' => $users, 'agente' => $agente, 'proveedor' => $proveedor, 'empleados' => $empleados, 'items' => $items))->with('contador', $contador)->with('totalPagosEmpleado', $totalPagosEmpleado)->with('totalFacturasProveedor', $totalFacturasProveedor)->with('facturasCount', $facturasCount);
//var_dump($proveedor);
}