206 lines
12 KiB
PHP
206 lines
12 KiB
PHP
@extends('backend.admin-master')
|
|
@section('style')
|
|
<link rel="stylesheet" type="text/css" href="//cdn.datatables.net/1.10.19/css/jquery.dataTables.css">
|
|
<link rel="stylesheet" type="text/css" href="//cdn.datatables.net/1.10.18/css/dataTables.bootstrap4.min.css">
|
|
<link rel="stylesheet" type="text/css" href="//cdn.datatables.net/responsive/2.2.3/css/responsive.bootstrap.min.css">
|
|
<link rel="stylesheet" type="text/css" href="//cdn.datatables.net/responsive/2.2.3/css/responsive.jqueryui.min.css">
|
|
<style>
|
|
.dataTables_wrapper .dataTables_paginate .paginate_button{
|
|
padding: 0 !important;
|
|
}
|
|
div.dataTables_wrapper div.dataTables_length select {
|
|
width: 60px;
|
|
display: inline-block;
|
|
}
|
|
</style>
|
|
<link rel="stylesheet" href="{{asset('assets/backend/css/media-uploader.css')}}">
|
|
@endsection
|
|
@section('site-title')
|
|
{{__('All Events')}}
|
|
@endsection
|
|
@section('content')
|
|
<div class="col-lg-12 col-ml-12 padding-bottom-30">
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<div class="margin-top-40"></div>
|
|
@include('backend/partials/message')
|
|
@if($errors->any())
|
|
<div class="alert alert-danger">
|
|
<ul>
|
|
@foreach($errors->all() as $error)
|
|
<li>{{$error}}</li>
|
|
@endforeach
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
</div>
|
|
<div class="col-lg-12 mt-5">
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<h4 class="header-title">{{__('All Events')}}</h4>
|
|
<div class="bulk-delete-wrapper">
|
|
<div class="select-box-wrap">
|
|
<select name="bulk_option" id="bulk_option">
|
|
<option value="">{{{__('Bulk Action')}}}</option>
|
|
<option value="delete">{{{__('Delete')}}}</option>
|
|
</select>
|
|
<button class="btn btn-primary btn-sm" id="bulk_delete_btn">{{__('Apply')}}</button>
|
|
</div>
|
|
</div>
|
|
<ul class="nav nav-tabs" id="myTab" role="tablist">
|
|
@php $a=0; @endphp
|
|
@foreach($all_events as $key => $event)
|
|
<li class="nav-item">
|
|
<a class="nav-link @if($a == 0) active @endif" data-toggle="tab" href="#slider_tab_{{$key}}" role="tab" aria-controls="home" aria-selected="true">{{get_language_by_slug($key)}}</a>
|
|
</li>
|
|
@php $a++; @endphp
|
|
@endforeach
|
|
</ul>
|
|
<div class="tab-content margin-top-40" id="myTabContent">
|
|
@php $b=0; @endphp
|
|
@foreach($all_events as $key => $event)
|
|
<div class="tab-pane fade @if($b == 0) show active @endif" id="slider_tab_{{$key}}" role="tabpanel" >
|
|
<div class="table-wrap table-responsive">
|
|
<table class="table table-default" id="all_blog_table">
|
|
<thead>
|
|
<th class="no-sort">
|
|
<div class="mark-all-checkbox">
|
|
<input type="checkbox" class="all-checkbox">
|
|
</div>
|
|
</th>
|
|
<th>{{__('ID')}}</th>
|
|
<th>{{__('Title')}}</th>
|
|
<th>{{__('Image')}}</th>
|
|
<th>{{__('Organizer')}}</th>
|
|
<th>{{__('Category')}}</th>
|
|
<th>{{__('Event Date')}}</th>
|
|
<th>{{__('Status')}}</th>
|
|
<th>{{__('Action')}}</th>
|
|
</thead>
|
|
<tbody>
|
|
@foreach($event as $data)
|
|
<tr>
|
|
<td>
|
|
<div class="bulk-checkbox-wrapper">
|
|
<input type="checkbox" class="bulk-checkbox" name="bulk_delete[]" value="{{$data->id}}">
|
|
</div>
|
|
</td>
|
|
<td>{{$data->id}}</td>
|
|
<td>{{$data->title}}</td>
|
|
<td>
|
|
<div class="img-wrap">
|
|
@php
|
|
$event_img = get_attachment_image_by_id($data->image,'thumbnail',true);
|
|
@endphp
|
|
@if (!empty($event_img))
|
|
<div class="attachment-preview">
|
|
<div class="thumbnail">
|
|
<div class="centered">
|
|
<img class="avatar user-thumb" src="{{$event_img['img_url']}}" alt="">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endif
|
|
</div>
|
|
</td>
|
|
<td>{{$data->organizer}}</td>
|
|
<td>{{get_events_category_by_id($data->category_id)}}</td>
|
|
<td>{{date("d - M - Y", strtotime($data->date))}}</td>
|
|
<td>
|
|
@if($data->status == 'draft')
|
|
<span class="alert alert-warning" >{{__('Draft')}}</span>
|
|
@else
|
|
<span class="alert alert-success">{{__('Publish')}}</span>
|
|
@endif
|
|
</td>
|
|
<td>
|
|
<x-delete-popover :url="route('admin.events.delete',$data->id)"/>
|
|
|
|
<a class="btn btn-primary btn-xs mb-3 mr-1" href="{{route('admin.events.edit',$data->id)}}">
|
|
<i class="ti-pencil"></i>
|
|
</a>
|
|
<a class="btn btn-info btn-xs mb-3 mr-1" target="_blank" href="{{route('frontend.events.single',$data->slug)}}">
|
|
<i class="ti-eye"></i>
|
|
</a>
|
|
<form action="{{route('admin.events.clone')}}" method="post" style="display: inline-block">
|
|
@csrf
|
|
<input type="hidden" name="item_id" value="{{$data->id}}">
|
|
<button type="submit" title="clone this to new draft" class="btn btn-xs btn-secondary btn-sm mb-3 mr-1"><i class="far fa-copy"></i></button>
|
|
</form>
|
|
</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
@php $b++; @endphp
|
|
@endforeach
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|
|
|
|
@section('script')
|
|
<!-- Start datatable js -->
|
|
<script src="//cdn.datatables.net/1.10.19/js/jquery.dataTables.js"></script>
|
|
<script src="//cdn.datatables.net/1.10.18/js/jquery.dataTables.min.js"></script>
|
|
<script src="//cdn.datatables.net/1.10.18/js/dataTables.bootstrap4.min.js"></script>
|
|
<script src="//cdn.datatables.net/responsive/2.2.3/js/dataTables.responsive.min.js"></script>
|
|
<script src="//cdn.datatables.net/responsive/2.2.3/js/responsive.bootstrap.min.js"></script>
|
|
<script>
|
|
$(document).ready(function() {
|
|
|
|
$(document).on('click','#bulk_delete_btn',function (e) {
|
|
e.preventDefault();
|
|
|
|
var bulkOption = $('#bulk_option').val();
|
|
var allCheckbox = $('.bulk-checkbox:checked');
|
|
var allIds = [];
|
|
allCheckbox.each(function(index,value){
|
|
allIds.push($(this).val());
|
|
});
|
|
if(allIds != '' && bulkOption == 'delete'){
|
|
$(this).text('{{__('Deleting...')}}');
|
|
$.ajax({
|
|
'type' : "POST",
|
|
'url' : "{{route('admin.events.bulk.action')}}",
|
|
'data' : {
|
|
_token: "{{csrf_token()}}",
|
|
ids: allIds
|
|
},
|
|
success:function (data) {
|
|
location.reload();
|
|
}
|
|
});
|
|
}
|
|
|
|
});
|
|
|
|
$('.all-checkbox').on('change',function (e) {
|
|
e.preventDefault();
|
|
var value = $('.all-checkbox').is(':checked');
|
|
var allChek = $(this).parent().parent().parent().parent().parent().find('.bulk-checkbox');
|
|
//have write code here fr
|
|
if( value == true){
|
|
allChek.prop('checked',true);
|
|
}else{
|
|
allChek.prop('checked',false);
|
|
}
|
|
});
|
|
|
|
$('.table-wrap > table').DataTable( {
|
|
"order": [[ 1, "desc" ]],
|
|
'columnDefs' : [{
|
|
'targets' : 'no-sort',
|
|
'orderable' : false
|
|
}]
|
|
} );
|
|
} );
|
|
</script>
|
|
@endsection
|