Current File : //home/tradevaly/public_html/resources/views/backend/pages/help/index.blade.php |
@extends('backend.ayaan.master')
@push('title') Help Requests @endpush
@section('css')
<!-- DataTables -->
<link href="{{ asset('/assets/libs/datatables/datatables.min.css') }}" rel="stylesheet" type="text/css" />
@endsection
@section('content')
@component('components.breadcrumb')
@slot('li_1') Dashboards @endslot
@slot('title') Help Requests @endslot
@endcomponent
<div class="row">
<div class="col-12">
<div class="card">
<div class="card-body">
<div class="row mb-2">
<div class="col-sm-4"></div>
<div class="col-sm-8">
</div><!-- end col-->
</div>
<div class="table-responsive">
<table class="table" id="datatable-buttons">
<thead>
<tr>
<th class="text-center">#</th>
<th>{{translate("Name")}}</th>
<th>{{translate("Email")}}</th>
<th>{{translate("Phone")}}</th>
<th>{{translate("Massage")}}</th>
<th>{{translate("Organization")}}</th>
<th class="text-right">{{translate("Actions")}}</th>
</tr>
</thead>
<tbody>
@php
$i = 0;
@endphp
@foreach ($helps as $help)
<tr>
<?php $i++; ?>
<td class="text-center">{{$i}}</td>
<td>{{$help['f_name']}}</td>
<td>{{$help['email']}}</td>
<td>{{$help['phone']}}</td>
<td>{{ Str::limit($help['message'], 50) }}</td>
<td>{{$help['c_name']}}</td>
<td class="td-actions text-right">
<a href="{{url('b2b/contactus/show',$help->id)}}" class="badge bg-info" title="View details" style="color: #fff">
<i class="fas fa-eye"></i>
</a>
<a href="{{url('b2b/contactus/delete',$help->id)}}" name="rfq" class="badge bg-danger" title="Delete" style="color: #fff">
<i class="fa fa-times"></i>
</a>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<!-- end row -->
@endsection
@section('script')
<!-- Required datatable js -->
<script src="{{ asset('/assets/libs/datatables/datatables.min.js') }}"></script>
<script src="{{ asset('/assets/libs/jszip/jszip.min.js') }}"></script>
<script src="{{ asset('/assets/libs/pdfmake/pdfmake.min.js') }}"></script>
<!-- Datatable init js -->
<script type="text/javascript">
$(function () {
$(document).ready(function () {
var table = $('#datatable-buttons').DataTable({
lengthChange: false,
processing: true,
dom: 'Bfrtip',
serverSide: false,
buttons: ['copy', 'excel', 'pdf', 'colvis']
});
table.buttons().container().appendTo('#datatable-buttons_wrapper .col-md-6:eq(0)');
$(".dataTables_length select").addClass('form-select form-select-sm');
});
});
</script>
@endsection