@extends('layouts.app') @section('include_css') @endsection @section('content')

Dashboard

@can('MANAGE_INVOICE')
Invoices {{$invoice_count ??'0'}}
@endcan @can('MANAGE_INVOICE')
CREDIT NOTE {{$invoice_return_count ??'0'}}
@endcan @can('MANAGE_PAYMENT')
Payment {{$payment_count ??'0'}}
@endcan @can('MANAGE_GRN')
GRN {{$grn_count ??'0'}}
@endcan

Low Stock Products

    @foreach($low_stock_products as $low_stock_product)
  • {{$low_stock_product->item_code ?? ''}}
    {{$low_stock_product->qty_on_hand ?? ''}}
  • @endforeach
@endsection @section('include_js') @endsection @section('custom_script') @endsection