@extends('dashboard.layouts.app')
@section('styles')
@endsection
@section('title', __('dashboard.Customers') . ' | ' . __('dashboard.Edit Customer'))
@section('page_heading', __('dashboard.Edit Customer'))
@section('breadcrumb')
{{ __('dashboard.Home') }}
{{ __('dashboard.Customers') }}
{{ __('dashboard.Edit Customer') }}
@endsection
@section('actions')
{{ __('dashboard.View All Customers') }}
{{ __('dashboard.Add New Customer') }}
@endsection
@section('content')
@foreach ($customer->audits as $audit)
{{-- {{dd($audit)}} --}}
{{$audit->created_at}}
{{$audit->event}}
{{-- {{$audit->old_values}}
--}}
{{-- {{$audit->new_values}}
--}}
{{$audit->user->name}}
@endforeach
@endsection
@section('scripts')
@endsection