@extends('layouts.admin.theme')
@section('title', env('APP_NAME') . ' :: ' . __('Carta de Serviços'))
@section('content')
@include('errors.messageFlash')
@php $headLine = "
" . __('Carta de Serviços'); @endphp
@include('components.buttons._headLineButtonsBackAdd', [
'headLine' => __($headLine),
'routeBack' => 'admin.dashboard',
'routeBackParams' => [],
'nameBack' => __('Voltar'),
'routeAdd' => 'admin.cartaServicos.create',
'nameAdd' => __('Novo serviço'),
'permission' => 'GERENCIADOR_DA_CARTA_DE_SERVICOS',
])
{{ __('Serviços cadastrados') }}
{{ __('Nova categoria') }}
@php $index = $servicos->firstItem(); @endphp
@forelse($servicos as $servico)
| {{ $index }} |
{{ $servico->cds_titulo }} |
{{ $servico->cds_status === '3' ? __('Publicado') : __('Rascunho') }}
|
|
@php $index++; @endphp
@empty
| {{ __('Nenhum serviço cadastrado.') }} |
@endforelse
@endsection