@extends('layouts.app') @section('title', __( 'report.purchase_sell' )) @section('content')

Sell {{$ActionType}} Report (Sell Invoice Tracking, Before {{$ActionType}})



@foreach($transactions as $item) @endforeach
# Sale Date Sale Updated Date Updated By Invoice No Total Amount Action
# {{$loop->index +1}} {{date('m/d/Y',strtotime($item->transaction_date))}} {{date('m/d/Y',strtotime($item->created_at))}} {{$item->updatedBy? $item->updatedBy->username:''}} {{$item->invoice_no}} {{$item->final_total}} View
@stop @section('javascript') @endsection