@extends('layouts.dashboard') @section('title', 'Companies') @section('header', 'Company Management') @section('sidebar') @include('super-admin.partials.sidebar') @endsection @section('content')

Companies

Manage all registered companies and their subscriptions

Create Company
@forelse($companies as $company) @empty @endforelse
Company Contact Status Subscription Language Created Actions
@if($company->logo) {{ $company->name }} @else
{{ strtoupper(substr($company->name, 0, 1)) }}
@endif
{{ $company->name }}
{{ $company->city }}, {{ $company->country }}
{{ $company->email }}
{{ $company->phone ?? 'No phone' }}
{{ ucfirst($company->status) }} @if($company->activeSubscription)
{{ $company->activeSubscription->plan->name ?? 'N/A' }}
Expires: {{ \Carbon\Carbon::parse($company->activeSubscription->ends_at)->format('M d, Y') }}
@else No Subscription @endif
{{ strtoupper($company->language) }} {{ \Carbon\Carbon::parse($company->created_at)->format('M d, Y') }}

No companies found

Create your first company
@if($companies->hasPages())
{{ $companies->links() }}
@endif
@endsection