2025-03-06 20:34:43 -03:00
|
|
|
@extends('layout.base')
|
|
|
|
|
|
|
|
@section('page_title')
|
|
|
|
@hasSection('brokers_title')
|
2025-03-11 17:41:11 -03:00
|
|
|
Operadores - @yield('brokers_title')
|
|
|
|
@else
|
|
|
|
Operadores
|
2025-03-06 20:34:43 -03:00
|
|
|
@endif
|
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section('page_content')
|
|
|
|
<div class="ui container">
|
2025-03-11 17:41:11 -03:00
|
|
|
<h2 class="ui header">
|
|
|
|
@hasSection('brokers_header')
|
|
|
|
Operador - @yield('brokers_header')
|
|
|
|
@else
|
|
|
|
Operadores
|
|
|
|
@endif
|
|
|
|
</h2>
|
2025-03-06 20:34:43 -03:00
|
|
|
@yield('brokers_content')
|
|
|
|
</div>
|
|
|
|
@endsection
|