@extends('admin.layout.master') @section('content')
@if(Session::has('success'))

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

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

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

@endif

Article Lists ->{{$video_details->title}}

{{-- Add --}}
@foreach($articleList as $key=>$val) @php $type = ''; if($val->video_type == 1){ $type = 'Embedded'; } else if($val->video_type == 2){ $type = 'Url'; } else{ $type = 'No video'; } @endphp @endforeach
# Title Description Image video url type status
{{$key+1}} {{$val->title}} {{str_limit(strip_tags($val->description), $limit = 15, $end = '...')}} {{$type}} {{(($val->status == 1) ? "Active" : "Inactive")}} @if($val->status==2) @elseif($val->status==1) @endif
@endsection @section('scripts') @endsection