@extends('layouts.admin') @section('title', 'App Manager Dashboard') @section('header_title', 'App Manager Dashboard') @section('content')

Welcome to App Manager

Add New Script/App
{{-- Removed include for non-existent partial --}}

Total Managed Scripts

{{ $totalScriptsCount ?? ($scripts->total() ?? 'N/A') }}

Total Licenses Issued

{{ $totalLicensesCount ?? 'N/A' }}

Successful Activations (Last 7 Days)

{{ $recentSuccessfulActivationsCount ?? 'N/A' }}

View All

Activation Logs

Find a Script/Application

@if(request('search')) Clear @endif
@forelse ($scripts as $script) @empty @endforelse
Name Slug Version Status Boilerplate Core Total Licenses Actions
{{ $script->name }}

@if($script->description) {{ Str::limit($script->description, 70) }} @else No description. @endif

{{ $script->slug }} {{ $script->current_version }} {{ ucfirst($script->status) }} {{ $script->is_boilerplate_core ? 'Yes' : 'No' }} {{ $script->licenses_count ?? $script->licenses()->count() }}
View Files
@csrf @method('DELETE')
No managed scripts found. Add your first script.
{{ $scripts->links() }}
@endsection