@extends('admin.layouts.form') @section('custom_page_style') @endsection @section('content')

list   Timesheet List

Filter
@foreach($timesheets as $timesheet) @endforeach
Employee Name Work Date Contract No Company Name Work Classification SSN (Last 4 Digits) Time In Time Out Action
{!! $timesheet->employee_name !!} {!! $timesheet->work_date !!} {!! $timesheet->contract_no !!} {!! $timesheet->company_name !!} {!! $timesheet->work_classification !!} {!! $timesheet->ssn !!} {!! $timesheet->time_in !!} {!! $timesheet->time_out !!} edit
{!! $timesheets->appends(request()->all())->links() !!}
@endsection @section('custom_page_script') @endsection