@extends('admin-layouts.master') @section('content')
Data Tamu
@foreach ($guests as $g) @endforeach
No Nama No. Identitas Telepon Email Alamat Tgl Daftar Aksi
{{ $loop->iteration }} {{$g->name ?? ''}} {{ $g->identity_number ?? '-' }} {{ $g->phone ?? '-' }} {{ $g->email ?? '-' }} {{ Str::limit($g->address ?? '-', 30) }} {{ $g->created_at ? $g->created_at->format('d/m/Y') : '-' }} {{-- --}} {{-- --}}
@csrf @method("DELETE")
@push('scripts') @endpush @endsection