@extends('adminlte::page')
@section('title', 'Cuentas')
@section('content_header')
Listado de Cuentas
@stop
@section('content')
id |
Nombre |
Opciones |
@foreach($secretaries as $row)
{{$row->id}} |
{{$row->name}} |
|
@endforeach
@stop
@section('css')
@stop
@section('js')
@stop