15 lines
279 B
PHP
15 lines
279 B
PHP
@extends('layout.base')
|
|
|
|
@section('page_content')
|
|
<h1 class="ui header">
|
|
@hasSection('cuentas_title')
|
|
Cuenta @yield('cuentas_title')
|
|
@else
|
|
Cuentas
|
|
@endif
|
|
</h1>
|
|
<div class="ui basic fitted segment">
|
|
@yield('cuentas_content')
|
|
</div>
|
|
@endsection
|