@extends('layouts.master-vnext') @section('page-title') Account "{{ $account->name }}" @endsection @section('breadcrumb')
| Supplier | Product | Quantity | Unit price | Total | Date | Payed at |
|---|---|---|---|---|---|---|
| @if($expense->is_fixed_asset) @else @endif {{ $expense->supplier->name }} | {{ $expense->product->name }} | @quantity($expense->quantity) | @currency($expense->unit_price) {{ $expense->currency->symbol }} | @currency($expense->total_in_default_currency) {{ $defaultCurrency->symbol }} | @date($expense->expense_date) | @if($expense->payed_at === NULL) - not payed yet @else @date($expense->payed_at) @endif |