@extends('layouts.admin.theme') @section("title", env("APP_NAME") . " :: Lista de Telefones") @section('content')
Lista de Telefones da {{ $secretaria->name }}
@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif

Novo Telefone

id) }}" method="post"> @csrf @method('post')
@error('titulo') {{ $message }} @enderror
@error('description') {{ $message }}
@enderror (*) Separe os telefones por vírgula.

@include('components.tables._thead', ['thead' => ['Título', 'Telefones', 'Ações']]) @foreach($telefones as $telefone) @endforeach
{{ $telefone->titulo }} {{ $telefone->description }}
@csrf @method('DELETE')
@endsection