@extends('layouts.app') @section('title', 'Notifications - ' . config('app.name')) @section('content')
@php $notifications = [ ['title' => 'New project assigned', 'message' => 'You have been assigned to Project Alpha', 'time' => '2 hours ago'], ['title' => 'Task completed', 'message' => 'Your task "Update documentation" has been completed', 'time' => '5 hours ago'], ['title' => 'Team meeting reminder', 'message' => 'Meeting scheduled for tomorrow at 10:00 AM', 'time' => '1 day ago'], ]; @endphp