ultimatepos/resources/views/warranties/index.blade.php

103 lines
3.9 KiB
PHP

@extends('layouts.app')
@section('title', __('lang_v1.warranties'))
@section('content')
<!-- Content Header (Page header) -->
<section class="content-header">
<h1 class="tw-text-xl md:tw-text-3xl tw-font-bold tw-text-black">@lang('lang_v1.warranties')
</h1>
</section>
<!-- Main content -->
<section class="content">
@component('components.widget', ['class' => 'box-primary', 'title' => __('lang_v1.all_warranties')])
@slot('tool')
<div class="box-tools">
<a class="tw-dw-btn tw-bg-gradient-to-r tw-from-indigo-600 tw-to-blue-500 tw-font-bold tw-text-white tw-border-none tw-rounded-full btn-modal pull-right"
data-href="{{action([\App\Http\Controllers\WarrantyController::class, 'create'])}}"
data-container=".view_modal">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
class="icon icon-tabler icons-tabler-outline icon-tabler-plus">
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
<path d="M12 5l0 14" />
<path d="M5 12l14 0" />
</svg> @lang('messages.add')
</a>
</div>
@endslot
<table class="table table-bordered table-striped" id="warranty_table">
<thead>
<tr>
<th>@lang('lang_v1.name')</th>
<th>@lang('lang_v1.description')</th>
<th>@lang('lang_v1.duration')</th>
<th>@lang('messages.action')</th>
</tr>
</thead>
</table>
@endcomponent
</section>
<!-- /.content -->
@stop
@section('javascript')
<script type="text/javascript">
$(document).ready(function() {
//Status table
var warranty_table = $('#warranty_table').DataTable({
processing: true,
serverSide: true,
fixedHeader:false,
ajax: "{{ action([\App\Http\Controllers\WarrantyController::class, 'index']) }}",
columnDefs: [{
"targets": 3,
"orderable": false,
"searchable": false
}],
columns: [{
data: 'name',
name: 'name'
},
{
data: 'description',
name: 'description'
},
{
data: 'duration',
name: 'duration'
},
{
data: 'action',
name: 'action'
},
]
});
$(document).on('submit', 'form#warranty_form', function(e) {
e.preventDefault();
$(this).find('button[type="submit"]').attr('disabled', true);
var data = $(this).serialize();
$.ajax({
method: $(this).attr('method'),
url: $(this).attr("action"),
dataType: "json",
data: data,
success: function(result) {
if (result.success == true) {
$('div.view_modal').modal('hide');
toastr.success(result.msg);
warranty_table.ajax.reload();
} else {
toastr.error(result.msg);
}
}
});
});
});
</script>
@endsection