@extends('layouts.master', ['title' => 'Candidate Calling Logs']) @section('contents')

Contact Candidate By Call List

@csrf
@if(auth()->user()->hasPermission('addcontact-form')) Add Contact Detail @endif
@if(session()->has('success'))
@endif @if(session()->has('error'))
@endif
@forelse ($logs as $log) @empty @endforelse
S.NO. Client Name Position Title Name Email Contact Number Recruiter Name/Email Remarks Contacted On Resume Action
{{$loop->iteration}} {{$log->client_name}} {{$log->job_position}} {{$log->name}} {{$log->candidate_email}} {{$log->phone_no}} {{$log->first_name." ".$log->last_name." / ".$log->email}} {{$log->remarks}} {{date('jS M, Y', strtotime($log->created_at))}} Download @if(auth()->user()->hasPermission('recruitment.edit-call_log')) @endif
No Record Found
{{$logs->links()}}
@endsection