@extends('layouts.list') @section('title') {{ config('app.name') }} Backend | Hajj Registration @endsection @section('breadcrumb') @endsection @section('table_order_column') 0 @endsection @section('table_order_sort')'desc'@endsection @section('table_column_defs') { "width": "100", "targets": 0 }, { "width": "50", "targets": 6 } @endsection @section('tablecontent') @foreach ($data as $row) @endforeach
Tanggal Daftar Paket Nama Lengkap Whatsapp Aktif Email Kota/Provinsi Action
@date($row->created_at, "d M Y") {{ $row->package->name }} {{ $row->name }} {{ $row->whatsapp }} {{ $row->email }} {{ $row->subdistrict->district->city->name }}, {{ $row->subdistrict->district->city->province->name }}
@endsection