@extends('layouts.app') @section('content')
{!! __('messages.thanks_for_joining_x_others_on_nazzela', ['count' => ''.($totalUsers ?? 0).'']) !!}
@foreach ($data as $key => $listings) @foreach ($listings as $item)
{{ $item['name'] }}

{{ $item['name'] }} {{ $item['type'] == 'service' ? __('messages.services') : __('messages.goods') }}

{{ $item['status'] == 1 ? __('messages.active') : __('messages.draft') }}
{{ \Carbon\Carbon::parse($item['created_at'])->format('M d, Y') }}
{{ $item['currency_sign'] }}{{ $item['new_price'] ?? $item['price'] }}
@endforeach @endforeach
@endsection @push('scripts') @endpush