@extends('layouts.app') @section('link') @endsection @section('content')
@include('shared.messages')

{{__('texte.accounts_arr.index.banks')}} > {{!isset($changed_accounts) ? __('texte.accounts_arr.index.accounts_in') : __('texte.accounts_arr.index.revised_accounts_in')}} {{$bank->name}}


@permission('account-form-active-read')
@endpermission {{isset($changed_accounts) ? __('texte.accounts_arr.index.accounts') :__('texte.accounts_arr.index.revised_accounts')}}
@if(isset($accounts)) @foreach ($accounts as $account) @endforeach @else @foreach ($changed_accounts as $account) @endforeach @endif
{{strtoupper(__('texte.accounts_arr.index.id'))}} {{__('texte.accounts_arr.index.number')}} {{__('texte.accounts_arr.index.currency')}} {{__('texte.accounts_arr.index.active_f')}}
{{ $account->id }} {{ $account->number }} {{ __('texte.currencies_arr')[$account->currency]}} {{ App\Model::ACTIVE[$account->active] }}
{{ $account->id }} {{ $account->number }} {{ __('texte.currencies_arr')[$account->currency]}} {{ App\Model::ACTIVE[$account->active] }}
@endsection