@extends('admin.layout') @push('css') @endpush @section('content')

{{ __('CUENTAS REGISTRADAS') }}

@if (count($cuentas) > 0) @foreach ($cuentas as $cuenta) @endforeach @else @endif
{{ __('ID') }} {{ __('NOMBRE') }} {{ __('BANCO') }} {{ __('ENCARGADO') }} {{ __('BALANCE') }}
{{ $cuenta->id }} {{ $cuenta->nombre }} @if($cuenta->banco ) {{ $cuenta->banco->nombre }} @endif @if($cuenta->encargado ) {{ $cuenta->encargado->nombre }} @endif {{ $cuenta->balance }}
{{ __('No hay datos disponibles') }}
{{ $cuentas->links('pagination::bootstrap-4') }}
Mostrando del {{ $cuentas->firstItem() }} al {{ $cuentas->lastItem() }} de {{ $cuentas->total() }} registros
@include('tesoreria.cuentas.modal.create') @stop @section('js') @stop