@extends('layouts.app') @section('template_title') Candidates @endsection @section('content')
{{ __('Candidates') }}
@if ($message = Session::get('success'))

{{ $message }}

@endif
{{-- --}} @foreach ($candidates as $candidate) {{-- --}} @endforeach
No NameDescription Video Url Video Embed Poster ImageStatus Created At Updated At Country
{{ ++$i }} {{ $candidate->name }}{{ $candidate->description }} {{ $candidate->video_url }} {{ $candidate->video_embed }} {{ $candidate->poster_image }} @if($candidate->status == 1) {{ __('Yes') }} @else {{ __('No') }} @endif {{ $candidate->created_at->format('m/d/Y h:i A') }} {{ $candidate->updated_at->format('m/d/Y h:i A') }} {{ $candidate->country->name ?? 'N/A' }}
{{ __('Show') }} {{ __('Edit') }} @csrf @method('DELETE')
@endsection