|
Server : Apache/2.4.41 (Ubuntu) System : Linux vmi1525618.contaboserver.net 5.4.0-105-generic #119-Ubuntu SMP Mon Mar 7 18:49:24 UTC 2022 x86_64 User : www-data ( 33) PHP Version : 8.2.12 Disable Function : NONE Directory : /var/www/poskrypt/admin.poskrypt.com/resources/views/restaurant/modifier_sets/ |
Upload File : |
@extends('layouts.app')
@section('title', __('restaurant.modifiers'))
@section('content')
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>@lang( 'restaurant.modifier_sets' )
<small>@lang( 'restaurant.manage_your_modifiers' )</small>
</h1>
<!-- <ol class="breadcrumb">
<li><a href="#"><i class="fa fa-dashboard"></i> Level</a></li>
<li class="active">Here</li>
</ol> -->
</section>
<!-- Main content -->
<section class="content">
<div class="box">
<div class="box-header">
<h3 class="box-title">@lang( 'restaurant.all_your_modifiers' )</h3>
@can('restaurant.create')
<div class="box-tools">
<button type="button" class="btn btn-block btn-primary btn-modal"
data-href="{{action([\App\Http\Controllers\Restaurant\ModifierSetsController::class, 'create'])}}"
data-container=".modifier_modal">
<i class="fa fa-plus"></i> @lang( 'messages.add' )</button>
</div>
@endcan
</div>
<div class="box-body">
@can('restaurant.view')
<table class="table table-bordered table-striped" id="modifier_table">
<thead>
<tr>
<th>@lang( 'restaurant.modifier_sets' )</th>
<th>@lang( 'restaurant.modifiers' )</th>
<th>@lang( 'restaurant.products' )</th>
<th>@lang( 'messages.action' )</th>
</tr>
</thead>
</table>
@endcan
</div>
</div>
<div class="modal fade modifier_modal" tabindex="-1" role="dialog"
aria-labelledby="gridSystemModalLabel">
</div>
</section>
<!-- /.content -->
@endsection
@section('javascript')
<script type="text/javascript">
$(document).ready(function(){
$(document).on('click', 'button.remove-modifier-row', function(e){
$(this).closest('tr').remove();
});
$(document).on('submit', 'form#table_add_form', function(e){
e.preventDefault();
var data = $(this).serialize();
$.ajax({
method: "POST",
url: $(this).attr("action"),
dataType: "json",
data: data,
success: function(result){
if(result.success == true){
$('div.modifier_modal').modal('hide');
toastr.success(result.msg);
modifier_table.ajax.reload();
} else {
toastr.error(result.msg);
}
}
});
});
//Brands table
var modifier_table = $('#modifier_table').DataTable({
processing: true,
serverSide: true,
ajax: '/modules/modifiers',
columnDefs: [ {
"targets": [1,2, 3],
"orderable": false,
"searchable": false
} ],
columns: [
{ data: 'name', name: 'name' },
{ data: 'variations', name: 'variations'},
{ data: 'modifier_products', name: 'modifier_products'},
{ data: 'action', name: 'action'}
],
});
$(document).on('click', 'button.edit_modifier_button', function(){
$( "div.modifier_modal" ).load( $(this).data('href'), function(){
$(this).modal('show');
$('form#edit_form').submit(function(e){
e.preventDefault();
var data = $(this).serialize();
$.ajax({
method: "POST",
url: $(this).attr("action"),
dataType: "json",
data: data,
success: function(result){
if(result.success == true){
$('div.modifier_modal').modal('hide');
toastr.success(result.msg);
modifier_table.ajax.reload();
} else {
toastr.error(result.msg);
}
}
});
});
});
});
$(document).on('click', 'button.delete_modifier_button', function(){
swal({
title: LANG.sure,
text: LANG.confirm_delete_table,
icon: "warning",
buttons: true,
dangerMode: true,
}).then((willDelete) => {
if (willDelete) {
var href = $(this).data('href');
var data = $(this).serialize();
$.ajax({
method: "DELETE",
url: href,
dataType: "json",
data: data,
success: function(result){
if(result.success == true){
toastr.success(result.msg);
modifier_table.ajax.reload();
} else {
toastr.error(result.msg);
}
}
});
}
});
});
$(document).on('click', 'button.add-modifier-row', function(){
$('table#add-modifier-table').append($(this).data('html'));
});
$(document).on('click', 'button.remove_modifier_product', function(){
swal({
title: LANG.sure,
icon: "warning",
buttons: true,
dangerMode: true,
}).then((willDelete) => {
if (willDelete) {
$(this).closest('tr').remove();
}
});
});
});
</script>
@endsection