@extends('layouts.app') @section('title', 'Filiais') @section('content')
ADMINISTRAÇÃO · ORGANIZAÇÃO

Filiais

Gestão da sede, unidades existentes e expansão nacional.

+ Nova filial
@foreach($branches as $branch)@endforeach
UnidadeCódigoLocalizaçãoHierarquiaEstado
{{ $branch->name }}{{ $branch->email ?: 'Sem email registado' }}{{ $branch->code }}{{ $branch->province }} · {{ $branch->municipality }}{{ $branch->is_headquarters ? 'Sede principal' : ($branch->parent?->name ?? 'Filial') }}{{ $branch->trashed() ? 'Arquivada' : ($branch->is_active ? 'Activa' : 'Inactiva') }}@unless($branch->trashed())Editar
@csrf @method('DELETE')
@endunless
@endsection