@extends('layouts.app') @push('datatable-styles') @include('sections.datatable_css') @endpush @section('filter-section')
@lang('app.duration')
@if (!in_array('client', user_roles()))
@lang('app.client')
@lang('app.all')
@foreach ($clients as $client) @endforeach
@endif
@lang('app.clearFilters')
@lang('app.project')
@lang('app.all')
@foreach ($projects as $project)
{{ $project->project_name }}
@endforeach
@lang('app.status')
@lang('app.all')
@lang('app.open')
@lang('app.closed')
@endsection @section('content')
{!! $dataTable->table(['class' => 'table table-hover border-0 w-100']) !!}
@endsection @push('scripts') @include('sections.datatable_js') @endpush