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

{{\App\User::count()}}

Users

Activity Timeline

    @foreach(\App\Notification::where('user_id',\Auth::id())->orderBy('id','desc')->limit(10)->get() as $notification)
  • {{str_replace('_',' ',$notification->type)}}

    {{$notification->body}}
    {{$notification->created_at}}
  • @endforeach
@endsection @section('script') @endsection