@extends('admin.panel.layout') @section('admin_title', 'App-Links') @section('admin_content') @if(session('success'))
{{ session('success') }}
@endif
Apps

App-Smart-Links

Eine teilbare URL kotsch.tech/apps/<slug> leitet jeden Besucher automatisch in den richtigen Store (App Store / Play Store / Windows). Fehlt die App für eine Plattform, wird Interesse abgefragt und hier gezählt.

App anlegen
Apps{{ $apps->count() }}
Interesse gesamt{{ $apps->sum(fn($a) => $a->interest_ios + $a->interest_android + $a->interest_windows) }}
@if($apps->isEmpty())

Noch keine App angelegt. Leg deine erste an — z. B. „Convertly" mit App-Store- und Play-Store-Link.

@else
@foreach($apps as $a) @endforeach
App Smart-Link Store-Links Interesse (i/a/w)
{{ $a->name }} @unless($a->active)inaktiv@endunless
/{{ $a->slug }}
kotsch.tech/apps/{{ $a->slug }} @foreach(['ios'=>'fab fa-apple','android'=>'fab fa-android','windows'=>'fab fa-windows'] as $p => $icon) @endforeach {{ $a->interest_ios }} / {{ $a->interest_android }} / {{ $a->interest_windows }}
@csrf @method('DELETE')
@endif
@endsection