@extends('layouts.admin.master') @section('title', 'Estimate') @section('vendor-style') @endsection @section('vendor-script') @endsection @section('content')
@if(count($errors) > 0) @endif @if($message = Session::get('success')) @endif
@forelse ($sales as $sale) @empty @endforelse
# Invoice No Date MOP Tax Customer Branch Total Action
{{$loop->iteration}} {{ $sale->invoice_no }} {{ $sale->sale_date }} {{ $sale->payment_pode }} {{ $sale->tax_type }} {{ $sale->customer->name }} {{ $sale->branch->name }} {{ $sale->salesClient->grand_total }}
@if($sale->sales_type) @endif @if($sale->purpose) @if($sale->settled) Settled @else Not Settled @endif @endif @if($sale->purpose) Sales @else Estimate @endif @if($sale->purpose) @else @endif
@endsection