@extends('layouts.app') @section('css') @endsection @section('content')
{{ __('Customers') }} >> {{ $customerData->first_name }} {{ $customerData->last_name }} >> {{ __('Notes') }}
@if(Helpers::has_permission(Auth::user()->id, 'add_customer_note'))
@endif
@include('admin.customer.customer_tab')
{!! $dataTable->table(['class' => 'table table-striped table-hover customer-notes dt-responsive', 'width' => '100%', 'cellspacing' => '0']) !!}
@include('layouts.includes.message_boxes') @endsection @section('js') {!! translateValidationMessages() !!} {!! $dataTable->scripts() !!} @endsection