@extends('layouts.dashboard-app') @section('main-content')

Hello, Welcome {{auth()->user()->name}}

Leads for Verification

{{-- Add New Plan --}}
{{-- --}} @foreach ($operation as $key => $item) @endforeach
S# Lead No Customer Name Plan Name Sim Type C.M. No Later Date Time StatusRemarksAttend
{{$key}} {{$item->lead_no}} {{$item->customer_name}} @if ($item->sim_type == 'Elife') @php( $plan = \App\elife_plan::whereId($item->select_plan)->first()) {{$plan->plan_name}} @else @php( $plan = \App\plan::whereId($item->select_plan)->first()) {{$plan->plan_name}} @endif {{$item->sim_type}} {{$item->customer_number}} {{$item->later_date}} Reject
@endsection {{-- @@section('name') --}} {{-- @endsection --}}