25 lines
661 B
PHP
Raw Normal View History

2018-11-17 13:13:15 +03:00
@extends('layouts.admin')
@section('title', trans_choice('general.notifications', 2))
@section('content')
2019-11-16 10:21:14 +03:00
<div class="card">
<div class="card-header"></div>
2018-11-17 13:13:15 +03:00
2019-11-16 10:21:14 +03:00
<div class="card-body">
<div class="table-responsive">
<table class="table align-items-center table-flush">
<thead class="thead-light">
</thead>
<tbody>
</tbody>
</table>
</div>
2018-11-17 13:13:15 +03:00
</div>
2019-11-16 10:21:14 +03:00
<div class="card-footer">
2019-12-24 17:53:18 +03:00
@include('partials.admin.pagination', ['items' => $notifications])
2019-11-16 10:21:14 +03:00
</div>
2018-11-17 13:13:15 +03:00
</div>
@endsection