@extends('layouts.master') @section('title') {{trans_choice('general.expense',2)}} @endsection @section('content')
| {{trans_choice('general.expense',1)}} {{trans_choice('general.type',1)}} | {{trans_choice('general.amount',1)}} | {{trans_choice('general.date',1)}} | {{trans_choice('general.recurring',1)}} | {{trans_choice('general.description',1)}} | {{trans_choice('general.created_by',1)}} | {{ trans_choice('general.action',1) }} |
|---|---|---|---|---|---|---|
| @if(!empty($key->type)) {{$key->type->name}} @endif | {{ number_format($key->amount,2) }} | {{ $key->date }} | @if($key->recurring==1) {{trans_choice('general.yes',1)}} @else {{trans_choice('general.no',1)}} @endif | {{ $key->name }} | @if(!empty($key->created_by)) {{$key->created_by->first_name}} {{$key->created_by->last_name}} @endif |
|