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

Daftar Aplikasi

+ Tambah Aplikasi
@foreach($applications as $app) @endforeach
No Customer Name Nomor WA Nama App URL Secret Status Expired Aksi
{{ $loop->iteration }} {{ $app->customer_name }} {{ $app->no_wa }} {{ $app->name }} {{ $app->url }} {{ $app->secret_key }} @if(!$app->is_active) Nonaktif @elseif($app->is_expired) Expired @else Aktif @endif {{ $app->expired_at->format('Y m d') ?? '-' }} Edit
@endsection