@extends('admin.master') @section('title', 'Dashboard') @section('style_links') @endsection @section('contents')

Dashboard :: Latest Records

StockIn vs StockOut

Emp. Name Design. T. S.In Qty T. S.Out Qty T. Purchased({{$settings->currency_symbol}}) T. Sold({{$settings->currency_symbol}})
@if(count($sales_invoices)) @foreach($sales_invoices as $sales_invoice) @endforeach @else @endif
Date Inv No Ship to T. Qty T. Amount({{$settings->currency_symbol}}) Sold By
{{ $sales_invoice->sales_date }} {{ $sales_invoice->inv_no }} {{ $sales_invoice->ship_to }} {{ $sales_invoice->total_qty }} {{ number_format($sales_invoice->totalAmount,2) }} {{ $sales_invoice->sold_by }}
No data found!!
@if(count($local_invoices)) @foreach($local_invoices as $local_invoice) @endforeach @else @endif
Date Inv No Customer Details T. Qty T. Amount({{$settings->currency_symbol}}) Sold By
{{ $local_invoice->sales_date }} {{ $local_invoice->inv_no }} {{ $local_invoice->ship_to }} {{ $local_invoice->total_qty }} {{ number_format($local_invoice->totalAmount,2) }} {{ $local_invoice->sold_by }}
No data found!!
@if(count($statements)) @foreach($statements as $statement) @endforeach @else @endif
Date Title Ref. File Amount({{$settings->currency_symbol}}) Action By
{{ $statement->s_date }} {{ $statement->title }} Download file {{ number_format($statement->amount,2) }} {{ $statement->action_by }}
No data found!!
@if(count($sold_products)) @foreach($sold_products as $sold_product) @endforeach @else @endif
Date Name Type T. Qty T. Amount({{$settings->currency_symbol}}) Sold By
{{ $sold_product->sales_date }} {{ $sold_product->item_name }} @if($sold_product->type == "Cars") {{ $sold_product->type }} @else {{ $sold_product->type }} @endif {{ $sold_product->qty }} {{ number_format($sold_product->total,2) }} {{ $sold_product->sold_by }}
No data found!!
@if(count($stockins)) @foreach($stockins as $stockin) @endforeach @else @endif
Date Name Type T. Qty T. Amount({{$settings->currency_symbol}}) Stockin By
{{ $stockin->stockin_date }} {{ $stockin->item_name }} @if($stockin->type == "Cars") {{ $stockin->type }} @else {{ $stockin->type }} @endif {{ $stockin->qty }} {{ number_format($stockin->total,2) }} {{ $stockin->stockin_by }}
No data found!!
@if(count($employees)) @foreach($employees as $employee) @endforeach @else @endif
Name Designation Phone Email Address
{{ $employee->emp_name }} {{ $employee->emp_designation }} {{ $employee->emp_phone }} {{ $employee->emp_email }} {{ $employee->emp_address }}
No data found!!
@endsection @section('script_links') @endsection