Files

65 lines
2.3 KiB
PHP
Executable File

@extends('dashboard.layouts.app')
@section('title', trans('admin.notification_available.title'). ' - ')
@section('speedbar')
<div class="content-header row">
<div class="content-header-left col-md-9 col-12 mb-2">
<div class="row breadcrumbs-top">
<div class="col-12">
<h2 class="content-header-title float-left mb-0">@lang('admin.notification_available.title')</h2>
<div class="breadcrumb-wrapper col-12">
<ol class="breadcrumb">
<li class="breadcrumb-item "><a href="{{ route('dashboard') }}">@lang('admin.home')</a>
</li>
<li class="breadcrumb-item active">
@lang('admin.notification_available.title')
</li>
</ol>
</div>
</div>
</div>
</div>
</div>
@endsection
@section('content')
<div class="row" id="table-head">
<div class="col-12">
<div class="card">
<div class="card-content">
<div class="table-responsive">
<table class="table mb-0">
<thead class="thead-dark">
<tr>
<th scope="col">@lang('admin.branches.phone')</th>
</tr>
</thead>
<tbody>
@if(count($notifications) == 0)
<tr>
<td class="text-center" colspan="1">
@lang('admin.no_data')
</td>
</tr>
@endif
@foreach($notifications as $notification)
<tr>
<td>
{{ $notification->phone }}
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
@endsection