staff members,senderid, documents,bug fixes, etc

This commit is contained in:
Kwesi Banson
2023-07-27 01:33:36 +00:00
parent f2279bd13a
commit ea6d83e5d9
154 changed files with 21442 additions and 246 deletions

View File

@@ -7,6 +7,7 @@
@section('content')
@include('network_ops.partials.newip')
@include('network_ops.partials.new_notes')
<div class="">
<div class="page-title">
<div class="title_left" style="width:800px !important;">
@@ -21,7 +22,7 @@
<div class="clearfix"></div>
<div>@include('commons.notifications')</div>
<div class="row">
<div class="col-md-10 col-sm-12 col-xs-12">
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="x_panel">
<div class="x_title">
<div class="clearfix"></div>
@@ -29,9 +30,9 @@
{{-- start of content --}}
<div class="x_content">
<br>
{!! Form::model($network_arr, ['method' => 'PATCH', 'url' => ['mnos', $network_arr], 'class' => 'form-horizontal form-label-left' ]) !!}
{!! Form::model($network_arr, ['method' => 'PATCH', 'url' => ['mnos', $network_arr], 'class' => 'form-horizontal form-label-left', 'files' => 'true' ]) !!}
<div class="row">
<div class="col-md-4">
<div class="col-md-3">
<div class="form-group">
<div class=" {{ $errors->has('name') ? 'has-error' : ''}}">
<label class="" for="name">Name</label>
@@ -49,22 +50,29 @@
<div class="form-group">
<div class="{{ $errors->has('account_manager_id') ? 'has-error' : ''}}">
<label class="" for="account_manager_id">Account Manager</label>
<label class="" for="account_manager_id">Click Account Manager</label>
{!! Form::select('account_manager_id', $account_manager ,old('account_manager_id'), ['class' => 'form-control col-md-7 col-xs-12', 'placeholder'=>'Enter Account Manager' , 'id' => 'account_manager_id']) !!}
{!! $errors->first('account_manager_id', '<p class="help-block">:message</p>') !!}
</div>
</div>
<div class="form-group">
<div class="{{ $errors->has('mno_account_manager') ? 'has-error' : ''}}">
<label class="" for="MnoAccountManager">MNO Account Manager</label>
{!! Form::text('mno_account_manager',old('mno_account_manager'), ['class' => 'form-control col-md-7 col-xs-12', 'placeholder'=>'Enter MNO Account Manager' , 'id' => 'MnoAccountManager']) !!}
{!! $errors->first('mno_account_manager', '<p class="help-block">:message</p>') !!}
</div>
</div>
<div class="form-group">
<div class=" {{ $errors->has('contact_person') ? 'has-error' : ''}}">
<label class="" for="email">Contact Person</label>
<label class="" for="contact_person">Contact Person</label>
{!! Form::text('contact_person', old('contact_person'), ['class' => 'form-control', 'placeholder'=>'Enter Contact Person' , 'id' => 'contact_person']) !!}
{!! $errors->first('contact_person', '<p class="help-block">:message</p>') !!}
</div>
</div>
<div class="form-group">
<div class=" {{ $errors->has('contact_person_phone') ? 'has-error' : ''}}">
<label class="" for="email">Phone</label>
{!! Form::text('contact_person_phone', old('contact_person_phone'), ['class' => 'form-control', 'placeholder'=>'Enter Phone Number' , 'id' => 'phone']) !!}
<label class="" for="contactPersonPhone">Phone</label>
{!! Form::text('contact_person_phone', old('contact_person_phone'), ['class' => 'form-control', 'placeholder'=>'Enter Phone Number' , 'id' => 'contactPersonPhone']) !!}
{!! $errors->first('contact_person_phone', '<p class="help-block">:message</p>') !!}
</div>
</div>
@@ -83,8 +91,39 @@
{!! $errors->first('contact_person_skype', '<p class="help-block">:message</p>') !!}
</div>
</div>
<div class="form-group">
<label>Status *:</label>
<div class="bg-<?php echo $status_bg; ?> " style="border-radius: 5px; border: 1px solid black; padding: 10px;">
<p >
Live:
<input type="radio" class="flat" name="connection_status" id="statusLive" value="Active" <?php echo ($network_arr->connection_status == 'Active') ? "checked" : ""; ?> />
</p>
<p>
Pending:
<input type="radio" class="flat" name="connection_status" id="statusProspect" value="Pending" <?php echo ($network_arr->connection_status == 'Pending') ? "checked" : ""; ?> />
</p>
<p>
Inactive
<input type="radio" class="flat" name="connection_status" id="statusInactive" value="Inactive" <?php echo ($network_arr->connection_status == 'Inactive') ? "checked" : ""; ?> />
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="col-md-3">
<div class="form-group">
<div class=" {{ $errors->has('contact_person_finance') ? 'has-error' : ''}}">
<label class="" for="technicalPerson">Technical Support Person</label>
{!! Form::text('technical_support_person', old('technical_support_person'), ['class' => 'form-control', 'placeholder'=>'Enter Technical Support Person' , 'id' => 'technicalPerson']) !!}
{!! $errors->first('technical_support_person', '<p class="help-block">:message</p>') !!}
</div>
</div>
<div class="form-group">
<div class=" {{ $errors->has('contact_person_finance') ? 'has-error' : ''}}">
<label class="" for="contactPersonFinance">Finance Contact Person</label>
{!! Form::text('contact_person_finance', old('contact_person_finance'), ['class' => 'form-control', 'placeholder'=>'Enter Finance Contact Person' , 'id' => 'contactPersonFinance']) !!}
{!! $errors->first('contact_person', '<p class="help-block">:message</p>') !!}
</div>
</div>
<div class="form-group">
<div class=" {{ $errors->has('services') ? 'has-error' : ''}}">
<label class="" for="type">Services</label>
@@ -106,7 +145,13 @@
{!! $errors->first('support_emails', '<p class="help-block">:message</p>') !!}
</div>
</div>
<div class="form-group">
<div class=" {{ $errors->has('finance_emails') ? 'has-error' : ''}}">
<label class="" for="financeEmail">Finance Emails (Multiple) </label>
{!! Form::select('finance_emails[]', $finance_emails, $old_finance_emails, ['class' => 'form-control financeEmail', 'id' => 'financeEmail', 'multiple' => 'true']) !!}
{!! $errors->first('finance_emails', '<p class="help-block">:message</p>') !!}
</div>
</div>
<div class="form-group">
<div class=" {{ $errors->has('support_phones') ? 'has-error' : ''}}">
<label class="" for="supportPhones">Support Phone Numbers (Multiple) </label>
@@ -115,33 +160,73 @@
</div>
</div>
<div class="form-group">
<label>Status *:</label>
<div class="bg-<?php echo $status_bg; ?> " style="border-radius: 5px; border: 1px solid black; padding: 10px;">
<p >
Live:
<input type="radio" class="flat" name="connection_status" id="statusLive" value="Active" <?php echo ($network_arr->connection_status == 'Active') ? "checked" : ""; ?> />
</p>
<p>
Pending:
<input type="radio" class="flat" name="connection_status" id="statusProspect" value="Pending" <?php echo ($network_arr->connection_status == 'Pending') ? "checked" : ""; ?> />
</p>
<p>
Inactive
<input type="radio" class="flat" name="connection_status" id="statusInactive" value="Inactive" <?php echo ($network_arr->connection_status == 'Inactive') ? "checked" : ""; ?> />
</p>
</div>
<label class="" for="contractValidity">Contract Validity</label>
<div class=" {{ $errors->has('contract_validity') ? 'has-error' : ''}}">
{!! Form::text('contract_validity', old('contract_validity'), ['class' => 'form-control', 'placeholder'=>'Enter Contract Date' , 'id' => 'contractValidity']) !!}
{!! $errors->first('contract_validity', '<p class="help-block">:message</p>') !!}
</div>
</div>
<div class="form-group">
<div class=" {{ $errors->has('contract_auto_renew') ? 'has-error' : ''}}">
<label class="" for="contractAutoRenew">Contract Auto Renewal</label>
{!! Form::select('contract_auto_renew', ['YES' => 'YES','NO' => 'NO'], old('contract_auto_renew'), ['class' => 'form-control ' , 'id' => 'contractAutoRenew' ]) !!}
{!! $errors->first('contract_auto_renew', '<p class="help-block">:message</p>') !!}
</div>
</div>
</div>
<div class="col-md-4">
<div class="col-md-6">
<div class="form-group">
<div class=" {{ $errors->has('connection_type') ? 'has-error' : ''}}">
<label class="" for="connectionType">Connection Types</label>
{!! Form::select('connection_type[]', $connection_types, $old_connection_type, ['class' => 'form-control' , 'id' => 'connectionType', 'multiple'=> 'true']) !!}
{!! $errors->first('connection_type', '<p class="help-block">:message</p>') !!}
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="form-group">
<div class=" {{ $errors->has('document_one_name') ? 'has-error' : ''}}">
<label class="" for="documentOneName">Document Name</label>
{!! Form::text('document_one_name', '', ['class' => 'form-control' , 'id' => 'documentOneName']) !!}
{!! $errors->first('document_one_name', '<p class="help-block">:message</p>') !!}
</div>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<div class=" {{ $errors->has('document_one') ? 'has-error' : ''}}">
<label class="" for="documentOne">File </label>
{!! Form::file('document_one', null, ['class' => 'form-control' , 'id' => 'documentOne', 'placeholder' => 'Select file to upload']) !!}
{!! $errors->first('document_one', '<p class="help-block">:message</p>') !!}
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="form-group">
<div class=" {{ $errors->has('document_two_name') ? 'has-error' : ''}}">
<label class="" for="documentOneName">Document Name</label>
{!! Form::text('document_two_name', '', ['class' => 'form-control' , 'id' => 'documentTwoName']) !!}
{!! $errors->first('document_two_name', '<p class="help-block">:message</p>') !!}
</div>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<div class=" {{ $errors->has('document_two') ? 'has-error' : ''}}">
<label class="" for="documentTwo">File</label>
{!! Form::file('document_two', null, ['class' => 'form-control' , 'id' => 'documentTwo', 'placeholder' => 'Select file to upload']) !!}
{!! $errors->first('document_two', '<p class="help-block">:message</p>') !!}
</div>
</div>
</div>
</div>
<div class="">
<p>IP Addresses <a href="" class="btn btn-primary btn-xs pull-right" id="addIpBtn" >Add IP</a></p>
<p><b>IP Addresses</b> <a href="" class="btn btn-primary btn-xs pull-right" id="addIpBtn" ><i class="fa fa-plus-square"></i> Add IP</a></p>
<table class="table table-striped">
<thead>
<tr>
@@ -161,6 +246,26 @@
@endforeach
</table>
</div>
<hr>
<div class="">
<p><b> Notes</b> <a class="btn btn-primary btn-xs pull-right" id="createNotesBtn"><i class="fa fa-plus-circle"></i> Add Notes</a></p>
<table class="table table-striped">
<thead>
<tr>
<th scope="col active">Services</th>
<th scope="col success">Notes</th>
<th scope="col info">Date Added</th>
</tr>
</thead>
@foreach($notes_arr as $row)
<tr>
<td class="">{{ $row->services }}</td>
<td class="">{{ $row->notes_body }}</td>
<td class="">{{ $row->created_at }}</td>
</tr>
@endforeach
</table>
</div>
</div>
</div>
<div class="ln_solid"></div>
@@ -192,6 +297,9 @@
$('.supportSkype').select2({
tags : true
});
$('.financeEmail').select2({
tags:true
});
});
</script>

View File

@@ -75,7 +75,7 @@
function link(cell, formatterParams){
var url = cell.getValue();
var rowID = cell.getData().id
return "<a href='"+ base_url + "/mnos/"+rowID+"/edit' class='btn btn-link'>"+url+"</a>";
return "<a href='"+ base_url + "/mnos/"+rowID+"' class='btn btn-link'>"+url+"</a>";
}
var table = new Tabulator("#mnosTable", {
ajaxURL: "mnos/all",

View File

@@ -0,0 +1,61 @@
<div class="modal fade" id="editNotesFormModal" tabindex="-1" role="dialog" aria-labelledby="approveModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<!-- <h4 class="modal-title">Default Modal</h4> -->
<h5 class="modal-title text-center" id="editNotesModalLabelHeading">Edit Notes</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body">
<form class="form-vertical" method="POST" id="editNotesForm" action="{{ url('clients/notes_update') }}">
{{ csrf_field() }}
<input type="hidden" name="client_id" id="clientIdEdit" value="{{ $showclient->id }}">
<input type="hidden" name="note_id" id="noteIdEdit" value="">
<div class="row">
<div class="form-group">
<label for="notesServices">Services</label>
<div class="col-md-12">
{!! Form::select('services[]', $service_type_names , old('services'), ['class' => 'form-control' , 'id' => 'notesServicesEdit', 'required' => 'required', 'multiple'=> 'true', 'style' => 'width: 100%']) !!}
</div>
</div>
<div class="form-group" >
<div class="col-md-12" style="padding-bottom: 5px;">
<label for="notesBody">Notes</label>
<textarea class="form-control" name="notes_body" rows="5" id="notesBodyEdit"></textarea>
</div>
</div>
<div class="form-group">
<div class="pull-rights">
<label>Highlight :</label>
<div class="">
<div class="">
<label>
<input type="checkbox" name="highlight" class="" /> YES
</label>
</div>
</div>
</div>
</div>
<div class="form-group" style="margin-bottom: 0.2rem; padding-bottom: 5px; padding-top: 5px;">
<div class="col-md-12" style="padding-bottom: 10px;">
<button type="submit" class="btn btn-success btn-block updateBtn"> <i class="fa fa-send"></i> Update</button>
</div>
</div>
<div class="form-group" style="margin-bottom: 0.5rem; padding-bottom: 5px; padding-top: 5px;">
<div class="col-md-12">
<button type="button" class="btn btn-dark btn-block" data-dismiss="modal"><i class="fa fa-close"></i> Close</button>
</div>
</div>
</div>
</form>
</div>
</div>
<!-- /.modal-content -->
</div>
<!-- /.modal-dialog -->
</div>
<!-- /.modal -->

View File

@@ -0,0 +1,63 @@
<div class="modal fade" id="newNotesForm" tabindex="-1" role="dialog" aria-labelledby="approveModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<!-- <h4 class="modal-title">Default Modal</h4> -->
<h5 class="modal-title text-center" id="approveModalLabelHeading">New Notes</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body">
<form class="form-vertical" method="POST" id="newNotesFormForm" action="{{ url('mno/notes_store') }}">
{{ csrf_field() }}
<!-- <input type="hidden" name="user_id" value="" id="userID" > -->
<input type="hidden" name="mno_id" id="mnoID" value="{{ $network_arr->id }}">
<div class="row">
<div class="form-group">
<label for="notesServices">Services</label>
<div class="col-md-12">
{!! Form::select('services[]', $services , old('services'), ['class' => 'form-control' , 'id' => 'notesServices', 'required' => 'required', 'multiple'=> 'true', 'style' => 'width: 100%']) !!}
</div>
</div>
<div class="form-group" >
<div class="col-md-12" style="padding-bottom: 5px;">
<label for="notesBody">Notes</label>
<textarea class="form-control" name="notes_body" rows="5" id="notesBody"></textarea>
</div>
</div>
<div class="form-group">
<div class="pull-rights">
<label>Highlight :</label>
<div class="">
<div class="">
<label>
<input type="checkbox" name="highlight" class="" /> YES
</label>
</div>
</div>
</div>
</div>
<div class="form-group" style="margin-bottom: 0.2rem; padding-bottom: 5px; padding-top: 5px;">
<div class="col-md-12" style="padding-bottom: 10px;">
<button type="submit" class="btn btn-success btn-block updateBtn"> <i class="fa fa-send"></i> Submit</button>
</div>
</div>
<div class="form-group" style="margin-bottom: 0.5rem; padding-bottom: 5px; padding-top: 5px;">
<div class="col-md-12">
<button type="button" class="btn btn-dark btn-block" data-dismiss="modal"><i class="fa fa-close"></i> Close</button>
</div>
</div>
</div>
</form>
</div>
</div>
<!-- /.modal-content -->
</div>
<!-- /.modal-dialog -->
</div>
<!-- /.modal -->

View File

@@ -4,56 +4,269 @@
{{ $page_title }}
@endif
@endsection
@section('content')
<div class="">
<div class="page-title">
<div class="title_left">
<div class="">
<div class="page-title">
<div class="title_left" style="width:800px !important;">
<ol class="breadcrumb">
<li><a href="{!! url('dashboard') !!}">Dashboard</a></li>
<li><a href="{!! url('mnos') !!}">Mobile Network Operators</a></li>
<li class="active"> {{ $mnoshow->name }} (Full Details)</li>
</ol>
</div>
</div>
<div class="clearfix"></div>
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="x_panel">
<div class="x_title">
FULL DETAILS <a href="{{ url('mnos/' . $mnoshow->id. '/edit') }}" class="btn btn-warning btn-sm pull-right"><i class="fa fa-edit"></i> Edit Details</a>
@include('commons.notifications')
<div class="clearfix"></div>
<hr class="style-four">
</div>
<div class="x_content">
<div class="row">
<div class="col-md-4">
<h4>Primary Details</h4>
<table class="table">
<tr>
<th>Name</th>
<td>{{ $mnoshow->name }}</td>
</tr>
<tr>
<th>Name</th>
<td>{{ $mnoshow->country }}</td>
</tr>
<tr>
<th>Account Manager</th>
<td>{{ $mnoshow->account_manager_info->name }}</td>
</tr>
<tr>
<th>Contact Person</th>
<td>{{ $mnoshow->contact_person }}</td>
</tr>
<tr>
<th>Phone</th>
<td>{{ $mnoshow->contact_person_phone }}</td>
</tr>
<tr>
<th>Email</th>
<td>{{ $mnoshow->contact_person_email }}</td>
</tr>
<tr>
<th>Skype Name</th>
<td>{{ $mnoshow->contact_person_skype_name }}</td>
</tr>
<tr>
<th>Contract Type </th>
<td>{{ $mnoshow->contract_type }}</td>
</tr>
<tr>
<th>Contract Validity </th>
<td>{{ $mnoshow->contract_validity }}</td>
</tr>
<tr>
<th>Contract Auto Renew </th>
<td>{{ $mnoshow->contract_auto_renew }}</td>
</tr>
</table>
</div>
<div class="title_left">
<ol class="breadcrumb">
<li><a href="{!! url('dashboard') !!}">Dashboard</a></li>
<li><a href="{!! url('network_ops') !!}">Network Operators</a></li>
<li class="active">Desplay Network Operator</li>
</ol>
<div class="col-md-4">
<h4>Company Details</h4>
<table class="table">
<tr>
<th>Name</th>
<td>{{ $mnoshow->country }}</td>
</tr>
<tr>
<th>Support Phones</th>
<td>
<?php
echo ($mnoshow->support_phones) ? implode(',', json_decode($mnoshow->support_phones)) : "";
?>
</td>
</tr>
<tr>
<th>Support Emails</th>
<td>
<?php
echo ($mnoshow->support_emails) ? implode(',', json_decode($mnoshow->support_emails)) : "";
?>
</td>
</tr>
<tr>
<th>Rate Emails</th>
<td>
<?php
echo ($mnoshow->rate_emails) ? implode(',', json_decode($mnoshow->rate_emails)) : "";
?>
</td>
</tr>
<tr>
<th>Support Skype IDs</th>
<td>
<?php
echo ($mnoshow->support_skype) ? implode(',', json_decode($mnoshow->support_skype)) : "";
?>
</td>
</tr>
<tr>
<th>Technical Support Person</th>
<td>
<?php
echo ($mnoshow->technical_support_person) ?? "N/A";
?>
</td>
</tr>
<tr>
<th>Finace Contact Person</th>
<td>
<?php
echo ($mnoshow->contact_person_finance) ?? "N/A";
?>
</td>
</tr>
</table>
</div>
<div class="col-md-4">
<h4>Operations </h4>
<table class="table">
<tr>
<th>Services</th>
<td class="green">
<?php echo ($mnoshow->services) ? implode(',', json_decode($mnoshow->services)) : ""; ?>
</td>
</tr>
<tr>
<th>Connnection Types</th>
<td><?php echo ($mnoshow->connection_type) ? implode(',', json_decode($mnoshow->connection_type)) : ""; ?></td>
</tr>
</table>
</div>
</div>
<div class="clearfix"></div>
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="x_panel">
<div class="x_title">
<h2>Network Operator Details </h2>
<hr class="style-five">
</div>
<div class="row">
<div class="col-md-6">
<h4>Notes</h4>
<div class="" style="height: 400px; overflow: scroll;">
<ul class="messages list-group" style="padding: 15px;">
@if($show_notes->isEmpty())
<li style="" class="">No notes found</li>
@else
<table class="table">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">Content</th>
<th scope="col">Services</th>
<th scope="col">Author</th>
<th scope="col">Date</th>
</tr>
</thead>
<tbody>
<?php $count = 1; ?>
@foreach($show_notes as $notes)
<tr>
<th scope="row">{{ $count }}</th>
<td>{{ $notes->notes_body }}</td>
<td>{{ $notes->services }}</td>
<td>{{ $notes->created_by_info->name }}</td>
<td>{{ $notes->created_at }}</td>
</tr>
<?php $count++; ?>
@endforeach
<div class="clearfix"></div>
</div>
<div class="x_content">
@include('commons.notifications')
<div class="col-md-7 col-sm-7 col-xs-12 ">
<blockquote style="line-height: 300%;">
<div class="product-image44">
<p>Name : {{ ucwords($operator_arr->name) }} </p>
</div>
<div class="product-image44">
<p>Description : {{ ucwords($operator_arr->country) }}</p>
</div>
</tbody>
</table>
@endif
</ul>
</div>
</div>
<div class="col-md-6">
<h4>IP Addresses</h4>
<div style="height: 400px; overflow: scroll;">
<ul class="messages list-group" style="padding: 15px;">
@if($ip_addresses->isEmpty())
<li style="" class="">No IP found</li>
@else
<table class="table">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">IP Address</th>
<th scope="col">Port</th>
<th scope="col">Status</th>
<th scope="col">Added By</th>
<th scope="col">Date</th>
</tr>
</thead>
<tbody>
<?php $count = 1; ?>
@foreach($ip_addresses as $row)
<tr>
<th scope="row">{{ $count }}</th>
<td>{{ $row->ip_address }}</td>
<td>{{ $row->port }}</td>
<td>{{ $row->status }}</td>
<td>{{ $row->created_by_info->name }}</td>
<td>{{ $row->created_at }}</td>
</tr>
<?php $count++; ?>
@endforeach
</blockquote>
<div class="clearfix"></div>
<br>
</div>
</div>
<div>
</div>
</tbody>
</table>
@endif
</ul>
</div>
</div>
</div>
</div>
@endsection
<div class="row">
<hr class="style-five">
</div>
<div class="row">
<div class="col-md-12 well">
<h4>Uploaded Documents</h4>
@if($showdocuments->isEmpty() == false)
<div class="row">
<div class="col-md-6">
<div class="row">
@foreach($showdocuments as $docs)
<div class="col-md-3">
<p class="url">
<span class="fs1 text-info" aria-hidden="true" data-icon=""></span>
<a href="{{ url('clients/downloadfile', $docs->id) }}"><i class="fa fa-paperclip"></i> {{ $docs->name }}.{{ $docs->file_extension }}</a>
</p>
</div>
@endforeach
</div>
</div>
</div>
@else
<p>No Documents found</p>
@endif
</div>
</div>
</div>
</div>
</div>
</div>
@endsection
@section('javascript')
<script type="text/javascript">
$(function(){
});
</script>
@endsection