This commit is contained in:
2021-12-06 22:10:57 -03:00
parent 8ef4ab1c7d
commit 9d2504f016
35 changed files with 1374 additions and 239 deletions

View File

@ -0,0 +1,20 @@
@extends('layout.base')
@section('page_content')
<h1 class="ui header">
@hasSection('config_title')
@yield('config_title')
@else
Configuraciones
@endif
</h1>
<div class="ui compact grid">
<div class="three wide column">
@include('config.menu')
</div>
<div class="thirteen wide column">
<div class="ui segment">
@yield('config_content')
</div>
</div>
@endsection