@extends('adminlte::page') @section('content') @section('content_header', __('admin.bank_accounts'))
@if(count($errors) > 0)
@foreach($errors->all() as $error)

{{$error}}

@endforeach
@endif @if(Session::has('success'))

{{ Session::get('success') }}

@endif
@lang('admin.create_bank_account')
@foreach($banks as $row) @endforeach
ID @lang('admin.bank_name') @lang('admin.enabled') @lang('admin.date') @lang('admin.edit') @lang('admin.delete')
{{$row->id}} {{$row->bank_name}} @if($row->enabled=='1')@lang('admin.yes') @else @lang('admin.no') @endif {{\Carbon\Carbon::parse($row->created_at)->translatedFormat('M d, Y')}} @lang('admin.edit')
{{ csrf_field() }} {{ method_field('DELETE') }} @lang('admin.delete')
@if($banks->isEmpty())
@lang('admin.no_record').
@endif
@endsection