@extends('admin.panel.layout') @section('admin_title', 'Tester') @section('admin_content') {{-- Page header --}}
Verwalte Beta-Tester, Test-Apps und versende Bulk-Mails.
{{-- Flash messages --}} @if(session('success'))| App | Plattform | Version | Status | Links | Reihenfolge | |
|---|---|---|---|---|---|---|
|
{{ $app->icon }}
{{ $app->name }}
@if($app->notes) {{ $app->notes }}@endif |
@if($app->platform === 'ios') iOS @elseif($app->platform === 'android') Android @elseif($app->platform === 'windows') Windows @endif | {{ $app->version ?: '—' }} | @if($app->status === 'active')Aktiv @elseif($app->status === 'beta')Beta @elseGeschlossen@endif |
@if($app->testflight_link)TestFlight @endif @if($app->play_store_link)Play Store@endif |
{{ $app->sort_order }} | |
|
|
||||||
Noch keine Apps hinzugefügt.
@endif {{-- Add new app --}}| Name | Plattformen | Gerät | Registriert | Bestätigt | Status | ||
|---|---|---|---|---|---|---|---|
|
{{ $tester->name }}
@if($tester->created_at->isAfter(now()->subDays(3)))
✨ NEU
@endif
@if($tester->notes){{ Str::limit($tester->notes, 50) }}@endif
|
{{ $tester->email }} |
@foreach((array)$tester->platforms as $plt)
@if($plt === 'ios') iOS
@elseif($plt === 'android') Android
@elseif($plt === 'windows') Windows
@endif
@endforeach
|
{{ $tester->device_model ?: '—' }} |
{{ $tester->created_at->locale('de')->diffForHumans() }}
{{ $tester->created_at->format('d.m.Y') }} |
@if($tester->confirmed_at)
Bestätigt
{{ $tester->confirmed_at->format('d.m.Y') }} @else Ausstehend @endif |
@if(!$tester->confirmed_at) @else @endif |
Noch keine Tester registriert.
@endif