@extends('adminlte::page') @section('title', 'Cuentas Bancarias') @section('content_header')

Cuentas Bancarias

@stop @section('content')

Cuentas bancarias registradas

@can('bank_account.create') Nueva Cuenta @endcan
@if(session('success')) {{ session('success') }} @endif @foreach($bankAccounts as $b) {{ optional($b->company)->name ?? '—' }} {{ $b->bank_name }} {{ optional($b->currency)->code ?? '—' }} **** {{ $b->account_last4 }} {{ $b->clabe_iban ?: '—' }} {{ $b->is_active ? 'Activa' : 'Inactiva' }} @can('bank_account.update')
@csrf @method('PATCH')
@endcan @endforeach
@stop