@extends('layout') @section('h4-page', __('notifications')) @section('contents')
@if (session('success')) @endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@foreach ($main as $key => $item)

Customer : {{ $item?->account?->fullname() }}

{{ $item->desc }}
@endforeach
@endsection @section('scripts') @endsection