@extends('layouts.admin.master')
@section('title', 'Sales Return')
@section('vendor-style')
@endsection
@section('vendor-script')
@endsection
@section('content')
@if(count($errors) > 0)
Error!!
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@if($message = Session::get('success'))
@endif
# |
Invoice No |
Date |
MOP |
Tax |
Customer |
Branch |
Total |
Action |
@forelse ($sales as $sale)
{{$loop->iteration}} |
{{ $sale->invoice_no }} |
{{ $sale->sale_date }} |
{{ $sale->payment_pode }} |
{{ $sale->tax_type }} |
{{ $sale->customer->name }} |
{{ $sale->branch->name }} |
{{ $sale->grand_total }} |
|
@empty
@endforelse
@endsection