@extends('backend.global.layout') @section('content') @include('backend.global.notifications')
@include('backend.global.header-card', ['button_label' => 'Adicionar Serviço', 'button_url' => route('manager.services.create')])
@if(isset($services) && count($services) > 0) {{ csrf_field() }} @foreach($services as $n) @include('backend.global.table-actions', ['edit_route' => route('manager.services.edit', $n->id), 'delete_route' => route('manager.services.delete', ['id' => $n->id])]) @endforeach
Nome Vísivel ACÇÕES
{{ $n->name }} {{ $n->visible ? 'Sim' : 'Não' }}
@else @include('backend.snippets.norecords') @endif
@endsection