@extends('layouts.admin.theme')
@section("title", env("APP_NAME") . " :: Lista de Links")
@section('content')
Lista de Links da {{ $secretaria->name }}
Novo Link
@include('components.tables._thead', ['thead' => ['Título', 'Tipo de Link', 'Descrição', 'Ordem', 'Ações']])
@php $index = 0; @endphp
@forelse($links as $link)
@php $index++; @endphp
@empty
{{ $link->titulo }}
@if($link->status == "_SELF")
{{ __("Link interno") }}
@else
{{ __("Link externo") }}
@endif
{{ $link->description }}
{{ $link->order }}
@endforelse
* Nenhum link cadastrado!