@extends('adminlte::page')
@section('title', __('clients.tab-title'))
@section('content_header')
@if ($message = Session::get('f_message'))
{{ $message }}
@endif
@stop
@section('content')
@include("clients.profile.tabs.client_data")
@include("clients.profile.tabs.locationProducts")
@stop
@section('footer')
@include('clients.profile.modals.create')
@include('clients.profile.modals.edit')
@include('clients.profile.modals.delete')
@endsection
@push('css')
@include('adminlte::libs.css.datatables')
@include('adminlte::libs.css.select2')
@endpush
@php
$columns = [
[
'data' => 'name',
'name' => 'name',
'sortable' => false,
],
[
'data' => 'actions',
'name' => 'actions',
'sortable' => false,
'width' => '15%'
],
];
$locationsUrl = url('/clients/location');
$url = url()->current();
$baseUrl = url('/');
$endpoint = [
'url' => "{$url}/list",
'dataSrc' => 'data'
];
@endphp
@push('js')
@include('adminlte::libs.js.datatables')
@include('adminlte::libs.js.select2')
@endpush