@foreach ($linhasHorarios as $lh) {{ $lh->codigo }} {{ $lh->nome }} @if ($lh->tarifa) R$ {{ number_format($lh->tarifa, 2, ',', '.') }} @else - @endif {{ $lh->secoes_count }} @if (auth()->user()->getPermissaoDetalhes('GERENCIADOR_DE_MOBIANGRA')['editar'] ?? false)
@csrf
@else {{ $lh->publicada ? __('Publicada') : __('Oculta') }} @endif
@if (auth()->user()->getPermissaoDetalhes('GERENCIADOR_DE_MOBIANGRA')['editar'] ?? false) @endif @if (auth()->user()->getPermissaoDetalhes('GERENCIADOR_DE_MOBIANGRA')['excluir'] ?? false)
@csrf @method('DELETE')
@endif
@endforeach