@extends('layouts.app') @section('title', __('business.business_locations')) @section('content') @include('layouts.partials.breadcrumb',['page_title'=> __( 'business.business_locations') , 'bread_crumbs'=>array( array('title'=> __('business.manage_your_business_locations'),'url'=>''))])
@component('components.widget', ['class' => 'box-body', 'title' => __( 'business.all_your_business_locations' )]) @slot('tool') @endslot @include('layouts.partials.datatable', [ 'tableId' => 'business_locations', 'columns' => [ ['title' => __('app.location_id'), 'orderable' => true, 'searchable' => true], ['title' => __('invoice.name'), 'orderable' => true, 'searchable' => true], ['title' => __('business.landmark'), 'orderable' => true, 'searchable' => true], ['title' => __('business.city'), 'orderable' => true, 'searchable' => true], ['title' => __('business.contact_person'), 'orderable' => true, 'searchable' => true], ['title' => __('business.contact_number'), 'orderable' => true, 'searchable' => true], ['title' => __('messages.action'), 'orderable' => false, 'searchable' => false], /* ['title' => __('business.country'), 'orderable' => true, 'searchable' => true], ['title' => __('app.price_group'), 'orderable' => true, 'searchable' => true], ['title' => __('invoice.invoice_scheme'), 'orderable' => true, 'searchable' => true], ['title' => __('app.invoice_layout_for_pos'), 'orderable' => false, 'searchable' => true], ['title' => __('app.invoice_layout_for_sale'), 'orderable' => false, 'searchable' => false], ['title' => __('messages.action'), 'orderable' => false, 'searchable' => false],*/ ], 'ajaxUrl' => '/business-location', // Replace with actual route ]) @endcomponent
@stop @section('javascript') @parent @endsection