{{-- resources/views/stock_adjustment/profiles/_details.blade.php (or সরাসরি আপনার show ভিউতে) --}}
{{-- Adjustment Info Card --}}
Stock Adjustment Information
  • Invoice No: {{ $item->invoice_no }}
  • Date: {{ $item->adjustment_format_date ?? (\Carbon\Carbon::parse($item->date)->format('d/m/y h:i A')) }}
  • Branch: {{ $item->company_branch }}
  • Sub Amount: {{ numberformat($item->amount) }}
  • Tax/VAT: {{ numberformat($item->total_vat) }}
  • Total: {{ numberformat($item->total_amount) }}
  • Type: {{ \Illuminate\Support\Str::ucfirst($item->adjustment_type) }}
  • @if (!empty($item->note))
  • Note: {{ $item->note }}
  • @endif
{{-- Meta Info Card --}}
Meta Information
  • Created By: {{ $item->created_user }}
  • Created Date: {{ $item->created_date ?? (\Carbon\Carbon::parse($item->created_at)->format('d/m/y h:i A')) }}
  • Updated By: {{ $item->updated_user }}
  • Updated Date: {{ $item->updated_date ?? (\Carbon\Carbon::parse($item->updated_at)->format('d/m/y h:i A')) }}