@extends('layouts.master') @section('content')


Add New Camp

Connected: {{ $totalConnected }}, Phone Cut: {{ $totalPhoneCut }}, Switched Off: {{ $totalSwitchedOff }}, Out of Reach: {{ $totalOutOfReach }}, Not Picking: {{ $totalNotPicking }}, Busy: {{ $totalBusy }}, No Answer: {{ $totalNoAnswer }}, Call Dropped: {{ $totalCallDropped }}, Voicemail: {{ $totalVoicemail }}, Number Not in Service: {{ $totalNotInService }}
@if (session('success'))
{{ session('success') }}
@elseif(session('error'))
{{ session('error') }}
@endif
Reset
@foreach ($camps as $camp) @endforeach
Camp Location Camp Date Pt Name Phone Phone Status Status Remark Actions
{{ $camp->camp_location }} {{ $camp->camp_date }} {{ $camp->pt_name }} {{ $camp->phone }} {{ $camp->phone_status }} {{ $camp->feedback_status }} {{ Str::limit($camp->remark, 30) }} Edit
@csrf @method('DELETE')
{{ $camps->links() }}
@endsection