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

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

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

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

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