@extends("layouts.dashboard")

@section("title", "Notifications - Dashboard | TechnoBlog")

@section("dashboard_content")

	<div class="my-3 my-md-5">

		<div class="container">

			<div class="page-header">
				<h1 class="page-title">Notifications</h1>
			</div>

			<div class="row">

				<div class="col-sm-12">
					<div class="card">

						<div class="card-header">
							<h3 class="card-title">List of all notifications</h3>
						</div>

						<div class="table-responsive pt-5 pb-5">

							<table id="dttable" class="table" style="width:100%">
								<thead>
									<tr>
										<th class="text-center">Message</th>
										<th class="text-center">Ago</th>
									</tr>
								</thead>
								<tbody>
									@foreach ($notifications as $notification)
                                        <tr>
											<td>{{ $notification["message"] }}</td>
											<td>{{ $notification["ago"] }}</td>
										</tr>
									@endforeach
								</tbody>
							</table>

						</div>

					</div>

				</div>

			</div>

		</div>

	</div>

@endsection
