@extends('layouts.frontend') @section('content')
{{ trans('cruds.popupText.title_singular') }} {{ trans('global.list') }}
@foreach($popupTexts as $key => $popupText) @endforeach
{{ trans('cruds.popupText.fields.id') }} {{ trans('cruds.popupText.fields.name') }}  
{{ $popupText->id ?? '' }} {{ $popupText->name ?? '' }} @can('popup_text_show') {{ trans('global.view') }} @endcan @can('popup_text_edit') {{ trans('global.edit') }} @endcan
@endsection @section('scripts') @parent @endsection