migrate to gtea from bistbucket

This commit is contained in:
2026-03-15 17:08:23 +07:00
commit 129ca2260c
3716 changed files with 566316 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
@extends('layouts.business.master')
@section('title')
{{ __('Notifications List') }}
@endsection
@section('main_content')
<div class="erp-table-section">
<div class="container-fluid">
<div class="card">
<div class="card-bodys ">
<div class="table-header p-16">
<h4>{{ __('Notifications List') }}</h4>
</div>
<div class="table-top-form p-16-0">
</div>
</div>
<div class="responsive-table m-0">
<table class="table" id="erp-table">
<thead>
<tr>
<th>@lang('SL.')</th>
<th>@lang('Message')</th>
<th>@lang('Created At')</th>
<th>@lang('Read At')</th>
<th>@lang('Action')</th>
</tr>
</thead>
<tbody id="notifications-data" class="searchResults">
@include('business::notifications.datas')
</tbody>
</table>
</div>
</div>
</div>
</div>
@endsection
@push('modal')
@include('admin.components.multi-delete-modal')
@endpush