Current File : //home/tradevaly/public_html/resources/views/user/pages/award/index.blade.php |
@extends('user.ayaan.master')
@push('title','Award List')
@section('css')
<!-- DataTables -->
<style>
nav.flex.items-center.justify-between {
display: none;
}
</style>
<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') Company Brochures@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"><h2>Award List</h2></div>
<div class="col-sm-8"> <div class="text-sm-end">
<a href="{{url('user/award/add')}}"
class="btn btn-success btn-rounded waves-effect waves-light mb-2 me-2"><i
class="mdi mdi-plus me-1"></i> Add New</a>
</div></div><!-- end col-->
</div>
<div class="table-responsive">
<table class="table" id="datatable-buttons">
<thead>
<tr>
<th class="text-center">#</th>
<th>{{translate("Award Photo")}}</th>
<th>{{translate("Award Name")}}</th>
<th>{{translate("Action")}}</th>
</tr>
</thead>
<tbody>
@php
$i = 0;
@endphp
@foreach ($pdfs as $pdf)
<tr>
<?php $i++; ?>
<td class="text-center">{{$i}}</td>
<td><img height="80" src="{{asset('storage/images/user/pdf/'.$pdf['image'])}}"/></td>
<td>{{$pdf->name}}</td>
<td class="td-actions text-right">
<a href="{{url('user/award/delete',$pdf->id)}}" name="category" class="btn btn-danger" title="Delete" style="color: #fff">
<i class="fas 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({
processing: true,
dom: 'Bfrtip',
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