@extends('adminlte::page') @section('title', 'SN Registration') @section('content_header')

SN Registrations

@endsection @section('content')
@forelse ($regs as $reg) @empty @endforelse
ID Serial Number Name Phone Device ID Expires At Created
{{ $reg->id }} {{ $reg->serial_number }} {{ $reg->name ?? '-' }} {{ $reg->phone ?? '-' }} {{ $reg->device_id ?? '-' }} {{ optional($reg->expires_at)->format('Y-m-d H:i') ?? '-' }} {{ optional($reg->created_at)->format('Y-m-d H:i') }} View
No registrations found.
@if ($regs instanceof \Illuminate\Contracts\Pagination\Paginator || $regs instanceof \Illuminate\Contracts\Pagination\LengthAwarePaginator) @endif
@endsection