@php setlocale(LC_TIME, 'id_ID'); Carbon\Carbon::setLocale('id'); $now = Carbon\Carbon::now(); $month = isset($_GET['month']) ? $_GET['month'] : $now->month; $year = isset($_GET['year']) ? $_GET['year'] : $now->year; $monthSearch = Carbon\Carbon::create() ->month($month) ->year($year); $daysInMonth = Carbon\CarbonPeriod::create($monthSearch->startOfMonth()->format('Y-m-d'), $monthSearch->endOfMonth()->format('Y-m-d')); @endphp @extends('layouts.index') @section('title') Jadwal Kerja @endsection @section('css') @endsection @section('content')
|
|
Nama | Opsi | @foreach ($pegawai as $item)
|---|---|
|
|
@php
$path = asset($item->foto);
if (Storage::exists($item->foto)) {
$path = Storage::url($item->foto);
}
@endphp
|