ok
Direktori : /home2/selectio/www/billingsoftwarenew/core/resources/views/admin/frontend/builder/ |
Current File : /home2/selectio/www/billingsoftwarenew/core/resources/views/admin/frontend/builder/pages.blade.php |
@extends('admin.layouts.app') @section('panel') <div class="row"> <div class="col-lg-12"> <div class="card b-radius--10 "> <div class="card-body p-0"> <div class="table-responsive--sm table-responsive"> <table class="table table--light style--two custom-data-table"> <thead> <tr> <th>@lang('Name')</th> <th>@lang('Slug')</th> <th>@lang('Action')</th> </tr> </thead> <tbody> @forelse($pdata as $k => $data) <tr> <td>{{ __($data->name) }}</td> <td>{{ __($data->slug) }}</td> <td> <div class="button--group"> <a href="{{ route('admin.frontend.manage.section', $data->id) }}" class="btn btn-sm btn-outline--primary"><i class="la la-pen"></i> @lang('Edit')</a> @if ($data->is_default == Status::NO) <button class="btn btn-sm btn-outline--danger confirmationBtn" data-action="{{ route('admin.frontend.manage.pages.delete', $data->id) }}" data-question="@lang('Are you sure to remove this page?')"> <i class="las la-trash"></i> @lang('Delete') </button> @endif </div> </td> </tr> @empty <tr> <td class="text-muted text-center" colspan="100%">{{ __($emptyMessage) }}</td> </tr> @endforelse </tbody> </table><!-- table end --> </div> </div> </div><!-- card end --> </div> </div> {{-- Add METHOD MODAL --}} <div id="addModal" class="modal fade" tabindex="-1" role="dialog"> <div class="modal-dialog" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title"> @lang('Add New Page')</h5> <button type="button" class="close" data-bs-dismiss="modal" aria-label="Close"> <i class="las la-times"></i> </button> </div> <form action="{{ route('admin.frontend.manage.pages.save') }}" method="POST"> @csrf <div class="modal-body"> <div class="form-group"> <label> @lang('Page Name')</label> <input type="text" class="form-control" name="name" value="{{ old('name') }}" required> </div> <div class="form-group"> <label> @lang('Slug')</label> <input type="text" class="form-control" name="slug" value="{{ old('slug') }}" required> </div> </div> <div class="modal-footer"> <button type="submit" class="btn btn--primary w-100 h-45">@lang('Submit')</button> </div> </form> </div> </div> </div> <x-confirmation-modal /> @endsection @push('breadcrumb-plugins') <button type="button" class="btn btn-sm btn-outline--primary addBtn"><i class="las la-plus"></i>@lang('Add New')</button> @endpush @push('script') <script> (function($) { "use strict"; $('.addBtn').on('click', function() { var modal = $('#addModal'); modal.find('input[name=id]').val($(this).data('id')) modal.modal('show'); }); })(jQuery); </script> @endpush