@extends('layouts.admin.master') @section('content')
{{ __('content.history') }}
{{ __('content.view_draft') }}
draft image
@if (count($items) > 0)
@if ($demo_mode == "on") @include('admin.demo_mode.demo-mode') @else
@method('DELETE') @csrf @endif
@php $desc = count($items); $asc=0; @endphp @foreach ($items as $item) @endforeach
# {{ __('content.history_date') }} {{ __('content.title') }} {{ __('content.order') }} {{ __('content.action') }}
{{ $asc++ }}{{ $desc-- }} {{ $item->history_date }} @php echo html_entity_decode($item->title); @endphp {{ $item->order }}
@else {{ __('content.not_yet_created') }} @endif
@endsection