@extends('layouts/contentLayoutMaster') @section('title', 'Billing History') @section('vendor-style') {{-- Page Css files --}} @endsection @section('page-style') {{-- Page Css files --}} @endsection @section('content')

Filters

@if($orders) @foreach($orders as $order) @endforeach @endif
Candidate Name Client Process Case Received Date Report Sent Date
{{ $order->employees_first_name }} {{ $order->employees_middle_name }} {{ $order->employees_last_name }} {{ $order->b2b_company_name }} {{ $order->task_display_id }} {{ date('d M Y', strtotime($order->received_date)) }} {{ $order->verification_date ? date('d M Y', strtotime($order->verification_date)) : '' }}
{{ $orders->links() }}
@endsection