@extends('adminlte::page') @section('title', 'Lista de titulares') @section('plugins.Sweetalert2', true) @section('content_header')

Listado de cuentas

@stop @section('content') @if (session()->has('info')) @endif
Nueva cuenta

Cuentas

@foreach ($records as $record) @endforeach
# N° Documento Nombres y Apellidos Estado Opc
{{ $record->id }} {{ $record->number }} {{ $record->name }} @if (!$record->deleted_at) Activo @else Inactivo @endif
@stop @section('js') @stop