@extends('admin.master') @section('title', 'Android APK Management') @section('content')

Android APK Management

Manage APK versions and frontend download availability.

Upload APK
@if(session('success'))
{{ session('success') }}
@endif
@forelse($appDownloads as $appDownload) @empty @endforelse
SL App Version APK File Status Action
{{ $appDownloads->firstItem() + $loop->index }}
{{ $appDownload->app_name }}
Android Application
{{ $appDownload->version ?: '—' }} {{ basename($appDownload->app_file) }}
@csrf @method('PATCH')
@if($appDownload->status) @endif Edit
@csrf @method('DELETE')

No APK has been uploaded.

@if($appDownloads->hasPages())
{{ $appDownloads->links() }}
@endif
@endsection