@extends('backend.layout') {{-- this style will be applied when the direction of language is right-to-left --}} @includeIf('backend.partials.rtl-style') @section('content')
{{ __('Popups') }}
@includeIf('backend.partials.languages')
{{ __('Add Popup') }}
@if (count($popups) == 0)

{{ __('NO POPUP FOUND') . '!' }}

@else
@foreach ($popups as $popup) @endforeach
{{ __('Image') }} {{ __('Name') }} {{ __('Type') }} {{ __('Status') }} {{ __('Serial Number') }} {{ __('Actions') }}
popup image {{ convertUtf8($popup->name) }} popup type image

{{ __('Type') . ' - ' . $popup->type }}

@csrf
{{ $popup->serial_number }}
@csrf
@endif
@endsection