@extends('layouts.page') @section('title', 'Organizations') @section('content') @php $pageName = 'Organizations'; @endphp @include('session-message')

All companies with access to the platform.

{{ $organizations->count() }} Total
@include('organization.create')
@if($organizations->isEmpty())

No organizations found.

@else
@foreach($organizations as $organization) @endforeach
Name Email Admin Address Status
{{ $organization->name ?? 'No Name' }} {{ $organization->email ?? 'No Email' }} {{ $organization->admin ?? 'No Admin' }} {{ $organization->address ?? 'No Address' }} @if($organization->id !== 1) @else Active @endif @if($organization->admin === null) @endif
@endif
@endsection @push('scripts') @endpush