@extends('inventory.layout')
@section('title', 'User Activity')
@section('content')
@push('head')
@endpush
{{ __('Title')}} |
{{ __('Status')}} |
{{ __('Hour Worked')}} |
{{ __('Action')}} |
@foreach($orders as $order)
{{ isset($order->workTitle) ? $order->workTitle :'' }} |
{{ isset($order->workStatus) ? $order->workStatus :'' }} |
{{ isset($order->workHours) ? $order->workHours :'' }} |
|
@endforeach
@push('script')
@endpush
@endsection