@extends('adminlte::page') @section('title', 'Time Entries') @section('content_header')

Time Entries

@endsection @include('partials.datatables') @section('content')
@if($billable!==null && $billable!=='') @endif
@if($billable!==null && $billable!=='') @endif
Reset

All Time Entries

@foreach($entries as $e) @endforeach
# Case Task Hours Rate Billable Date Actions
{{ $e->id }} @if($e->case) {{ $e->case->title }} @else — @endif {{ optional($e->task)->title }} {{ $e->hours }} {{ $e->hourly_rate }} {{ $e->billable ? 'Yes' : 'No' }} {{ $e->date_worked->format('Y-m-d') }} Edit
@csrf @method('DELETE')
@endsection