@extends('layouts.admin') @section('title', 'Dashboard') @section('topbar-title', 'Dashboard') @section('content')
| Invoice | User | Product | Amount | Status |
|---|---|---|---|---|
| {{ $order->invoice_number }} | {{ $order->user->name }} | {{ $order->plan->product->name }} | ${{ number_format($order->amount, 2) }} | {{ ucfirst($order->status) }} |
| No orders yet | ||||
| Key | User | Product | Status |
|---|---|---|---|
| {{ substr($lic->license_key, 0, 14) }}... | {{ $lic->user->name }} | {{ $lic->product->name }} | {{ $lic->status }} |
| No licenses yet | |||