@extends('layouts.main')
@section('title', __('form.expenses'))
@section('content')
@if(check_perm(['expenses_view', 'expenses_view_own']))
@{{ records.category.name }}
@{{ records.name }}
@endif
| @lang('form.amount') |
@{{ rec.amount }} |
| @lang('form.tax') |
@{{ rec.tax_information }} |
| @lang('form.total_with_tax') |
@{{ rec.amount_after_tax }} |
| @lang('form.payment_mode') |
@{{ rec.payment_mode.name }} |
| @lang('form.date') |
@{{ rec.date }} |
| @lang('form.reference') |
@{{ rec.reference }} |
| @lang('form.customer') |
|
| @lang('form.project') |
|
| @lang('form.note') |
@{{ rec.note }} |
| @lang('form.attachment') |
|
@endsection
@section('onPageJs')
@endsection