@extends('unit-admin.layout') @section('title', 'Bulk Import Members') @section('page_title', 'Bulk Import Members') @section('content') {{-- IMPORT RESULTS --}} @if(session('import_results')) @php $results = session('import_results'); @endphp {{-- SUMMARY --}}
| Row | Name | Status | |
|---|---|---|---|
| #{{ $s['row'] }} | {{ $s['name'] }} | {{ $s['email'] }} | Created |
| Row | Name | Errors | |
|---|---|---|---|
| #{{ $e['row'] }} | {{ $e['name'] }} | {{ $e['email'] }} |
@foreach($e['errors'] as $err)
• {{ $err }}
@endforeach
|
| Plan ID | Plan Name | Type | Amount | Duration |
|---|---|---|---|---|
| {{ $plan->id }} | {{ $plan->name }} | {{ $plan->type }} | ₹{{ number_format($plan->amount, 0) }} | {{ $plan->duration_months == 0 ? 'Lifetime' : $plan->duration_months . ' months' }} |