@extends('layouts.app') @section('title', 'Super Admin Dashboard') @section('content')
| Company Name | Phone | Status | Clients | |
|---|---|---|---|---|
| {{ $company->name }} | {{ $company->email }} | {{ $company->phone }} | @if($company->is_active) Active @else Inactive @endif | {{ $company->clients->count() }} |
No companies yet
| User | Company | Action | Model Type | Description | Timestamp |
|---|---|---|---|---|---|
| @if($log->user) {{ $log->user->name }} @else System @endif | @if($log->company) {{ $log->company->name }} @else - @endif | @if($log->action === 'created') CREATE @elseif($log->action === 'updated') UPDATE @elseif($log->action === 'deleted') DELETE @else {{ strtoupper($log->action) }} @endif | {{ $log->model_type }} |
{{ Str::limit($log->description, 50) }} | {{ $log->created_at->diffForHumans() }} |
| No activity logs found | |||||