@extends('layouts.app2') @section('content')

Customer Logs

@if(Session::has('flash_message'))

{{ Session::get('flash_message') }}

@endif
Customer Logs
@foreach($customer_logs as $item) @endforeach
Date User Activity Customer Shipper/Consignee/Notify Remarks
{{ Helper::convert_to_ddmmyyhis($item->created_at) }} {{ ucwords($item->user->name) }} {{ $item->activity }} {{ ($item->customer) ? ucwords($item->customer->name) : '' }} {{ ($item->shipper) ? ucwords($item->shipper->name) : '' }} {{ $item->remarks }}
{{ $customer_logs->render()}}


@endsection @section('scripts') @endsection