@extends('admin.layouts.app') @section('content')

{{!empty($recovery) ? __('Recovery') : __("All Popups")}}

@if(empty($recovery)) {{__("Add new popup")}} @endif
@include('admin.message')
@if(!empty($rows))
{{csrf_field()}}
@endif

{{__('Found :total items',['total'=>$rows->total()])}}

@if($rows->total() > 0) @foreach($rows as $row) @endforeach @else @endif
{{ __('Name')}} {{ __('Status')}} {{ __('Date')}}
{{$row->title}} {{ $row->status }} {{ display_date($row->updated_at)}} {{__('Edit')}}
{{__("No popup found")}}
{{$rows->appends(request()->query())->links()}}
@endsection