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

Daftar Aplikasi

@foreach($apps as $app)
{{ $app->name }}

Status: @if(!$app->is_active) Nonaktif @elseif($app->is_expired) Expired @else Aktif @endif

Tanggal Exp : {{ optional($app->expired_at)->format('d M Y') ?? '-' }}
@if($app->is_active && !$app->is_expired) Masuk Aplikasi @else @endif
@endforeach
@endsection