@extends('layouts.app') @section('content')
{{ _lang('Add New') }}
{{ _lang('List Account') }}
@php $currency = currency(); @endphp @php $date_format = get_company_option('date_format','Y-m-d'); @endphp @foreach($accounts as $account) @endforeach
{{ _lang('Account Title') }} {{ _lang('Opening Date') }} {{ _lang('Account Number') }} {{ _lang('Currency') }} {{ _lang('Current Balance') }} {{ _lang('Action') }}
{{ date($date_format, strtotime($account->opening_date)) }} {{ decimalPlace($account->balance, currency($account->account_currency)) }}
{{ csrf_field() }}
@endsection