@extends('layouts.dashboard') @section('title', 'Companies') @section('header', 'Company Management') @section('sidebar') @include('super-admin.partials.sidebar') @endsection @section('content')
Manage all registered companies and their subscriptions
| Company | Contact | Status | Subscription | Language | Created | Actions |
|---|---|---|---|---|---|---|
|
@if($company->logo)
{{ 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 |
||||||