@extends('backend.layouts.grid') @section('title', __('Slide Show')) @section('link', route('admin.slideshow.create')) @section('container', 'container-max-lg') @section('content')
@foreach ($slideshows as $slideshow) @endforeach
{{ __('#') }} {{ __('Preview') }} {{ __('Type') }} {{ __('Source') }} {{ __('duration') }} {{ __('Added date') }}
{{ $slideshow->id }} @if ($slideshow->type == 1) @else @endif {{ $slideshow->type == 1 ? __('Image') : __('Video') }} {{ $slideshow->source == 1 ? __('Uploaded') : __('URL') }} {{ $slideshow->duration > 1? $slideshow->duration . ' ' . __('Seconds'): $slideshow->duration . ' ' . __('Second') }} {{ vDate($slideshow->created_at) }}
@endsection