@extends('admin.layouts.app') @section('title','Candidate') @section('content')

{{__("All candidate")}}

@include('admin.message')
@if(!empty($rows))
{{csrf_field()}}
@endif

{{__('Found :total items',['total'=>$rows->total()])}}

@if($rows->total() > 0) @foreach($rows as $row) @endforeach @else @endif
{{ __('Name')}} {{ __('Title')}} {{ __('Email')}} {{ __('Phone')}} {{ __('Date')}} {{ __('Status')}} {{ __('Allow Search')}}
{{$row->getDisplayName()}} {{ $row->candidate->title ?? '' }} {{ $row->email}} {{ $row->phone}} {{ display_date($row->updated_at)}} {{ $row->status }} {{ $row->candidate->allow_search == 'publish' ? __('Publish') : __('Hide') }} {{__('Edit')}}
{{__("No data")}}
{{$rows->appends(request()->query())->links()}}
@endsection