@extends('layouts.app') @section('title') {{'Sales Invoce List'}} @endsection @section('content')
| S.N. | Sales Date | Sales No. | Customer Name | Sales Value | Status | Details | Action |
|---|---|---|---|---|---|---|---|
| {{$i}} | {{date('d-m-Y', strtotime($row->txn_date))}} | {{$row->id}} | {{$row->name}} | {{ number_format($row->total_value,2) }} | @if(isset($row->status) && $row->status ==0) Waiting for Admin @else Confirmed @endif | View | @if(isset($row->status) && $row->status ==0) | @if (Auth::user()->parent_id == "0") @endif @endif |