@extends('layouts.default') @section('title', 'Deposit list') @section('header-links') @include('accounts.banking.header') @endsection @section('new_button') add Deposit @endsection @section('content')
@foreach($deposites as $deposite) @endforeach
Bank or Credit Card Date Amount Actions
{{ isset($deposite->account->name_number)?$deposite->account->name_number:'' }} {{ Date::parse($deposite->paid_at)->format($date_format) }} @money($deposite->price,$deposite->currency_code,true) create remove_red_eye
@endsection