@extends('layouts.master')
@section('content')
@forelse ($plans as $plan)
| {{ $loop->iteration }} |
{{ $plan->created_at->toDateString() }}
{{ ucwords($plan->first_name . ' ' . $plan->last_name) }}
{{ $plan->email }}
{{ $plan->contact }}
{{ $plan->seen ? 'Viewed' : 'Not viewed' }}
|
@empty
@endforelse
@endsection
@push('custom_js')
@include('_helpers.datatable')
@include('_helpers.swal_delete')
@endpush