@extends('backend.superadmin.index') @section('body')

Interview List

@if(session('success'))
@endif @if(session('error'))
@endif @if($errors->any())
@endif
Category
Type
Status
@foreach($interviews as $key=>$interview) @endforeach
SN Image Title Category Type Status By Action
{{++$key}} @php $image_url = config('filesystems.asset').'/'.'interview'; @endphp @if (isset($interview->image)) @else @endif {{$interview->title}} {{$interview->category->name}} @if($interview->type=='Featured') {{$interview->type}} @else {{$interview->type}} @endif @if($interview->status=='Active') {{$interview->status}} @else {{$interview->status}} @endif {{$interview->user->name}}
@endsection