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

{{ __('message.table') }} > {{ __('message.notification') }} > {{$member->actual_name??''}} ({{$member->user->phone??''}})

{{ __('message.add new') }}

{{ __('message.member') }}

@foreach ($notifications as $index => $notification) @if ($member) @endif @endif @endforeach
{{ __('message.no') }}. {{ __('message.member') }} {{ __('message.message') }} {{ __('message.status') }} {{ __('message.date') }} {{ __('message.operate') }}
#{{ $index + 1 }} {{ $member->actual_name ?? '' }} ({{$member->user->phone??''}}) {{ $notification->message }} @if ($notification->already_read) {{__('message.read')}} @else {{__('message.new')}} {{ $notification->created_at->format('d/m/Y h:i') }} {{__('message.edit')}}
{{ csrf_field() }}
{{ $notifications->appends($_GET)->links() }}
@endsection @section('meta') {{ __('message.notification') }} - {{ config('app.name', 'Dashboard') }} @endsection