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

Manage Interviews

@if(Session::has('success'))

×{{ Session::get('success') }}

@endif @if(Session::has('error'))

{{ Session::get('error') }}

@endif

Interview Lists

Add
@php $i=1;@endphp @foreach($allInterviews as $interview) @endforeach
# Sorting Order Title Image Publish Date Description Status Action
{{$i++}} {{$interview->sorting}} {{$interview->title}} {{$interview->image}} {{$interview->publish_date}} {{$interview->description}} @if($interview->status == 1) Active @else In-Active@endif
{{ method_field('DELETE') }}{{csrf_field()}}
@endsection