@extends('backend.partials.master') @section('title') {{ __('push-notification.title') }} {{ __('levels.list') }} @endsection @section('maincontent')

{{ __('push-notification.title') }}

@if(!blank($pushNotifications)) @php $i=1; @endphp @foreach($pushNotifications as $pushNotification) @if($pushNotification->user_id) @else @if($pushNotification->type == 'all') @else @endif @endif @endforeach @endif
{{ __('levels.id') }} {{ __('levels.image') }} {{ __('levels.title') }} {{ __('levels.description') }} {{ __('levels.user') }} {{ __('levels.actions') }}
{{$i++}} Image {{ Str::limit(strip_tags($pushNotification->title), 50) }} {{ Str::limit(strip_tags($pushNotification->description), 50) }}{{ $pushNotification->user->name }}{{ __('All user') }}{{ __('userType.'.$pushNotification->type) }}
{{ $pushNotifications->links() }}

{!! __('Showing') !!} {{ $pushNotifications->firstItem() }} {!! __('to') !!} {{ $pushNotifications->lastItem() }} {!! __('of') !!} {{ $pushNotifications->total() }} {!! __('results') !!}

@endsection()