@php $bussiness = App\Models\Business::first(); @endphp

GENERAL

  • Add Users
  • Item
  • Item Groups
  • Inventory Adjustments

SALES

  • Customer
  • Invoices
  • Sales Receipts
  • Packages
  • Shipment
  • Customer Payment

PURCHASES

  • Vendor
  • Expenses
  • Bills
  • Purchase Receives
  • Vendor Payment
  • Vendor Credit
@can('petty-cash.update') @php $count = App\Models\CashRegister::where('user_id', auth()->user()->id) ->where('status', 'open') ->count(); @endphp @if ($count == 0) @endif @if ($count > 0) @endif @endcan
@php $cash = App\Models\CashRegister::where('user_id', auth()->user()->id) ->where('status', 'open') ->first(); @endphp @if (isset($cash)) @endif