2021-07-29 22:05:48 -04:00
|
|
|
@extends('layout.base')
|
|
|
|
|
|
|
|
@section('page_content')
|
|
|
|
<h1 class="ui header">
|
|
|
|
@hasSection('cuentas_title')
|
|
|
|
Cuenta @yield('cuentas_title')
|
|
|
|
@else
|
|
|
|
Cuentas
|
|
|
|
@endif
|
|
|
|
</h1>
|
2021-12-23 00:46:56 -03:00
|
|
|
<div class="ui basic fitted segment">
|
2021-07-29 22:05:48 -04:00
|
|
|
@yield('cuentas_content')
|
|
|
|
</div>
|
|
|
|
@endsection
|