@extends("layouts.app") @section('title', 'Dashboard') @push('css') @include('panel.inc.datatable.css') @endpush @section('content')
{{ $isClockRunning ? 'Clock started at: '.$attendance->clock_in->format('M d, Y - h:i A') : 'You are currently clocked out.' }}
@include('_announcements', ['announcements' => $announcements])
{{--

References

@forelse($referrals as $referral)

{{ $referral->user->name }} {{ $referral->created_at->format('h:i A') }}
{{ $referral->created_at->format('F m, Y') }}

{{ $referral->note }}
@empty

No References Found!

@endforelse
--}}
@if(\Gate::allows('leads'))

Leads

{!! $leadsDataTable->table() !!}
@endif @endsection @push('script') @include('panel.inc.datatable.js') @if(\Gate::allows('leads')) {!! $leadsDataTable->scripts() !!} @endif @endpush