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

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

Activation Leads

{{-- Add New Plan --}} {{--

if you're unable to see leads, please allow location for leads or refresh page

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