@extends('template.app') @section('meta') @endsection @section('title') View Logs @endsection @section('styles') @endsection @section('content')
Model VIN No. Interior Color Exterior Color Manufacturing Year
{{ $product->car_name ?? '-' }} {{ $product->vin_number ?? '-' }} {{ $product->interior_color ?? '-' }} {{ $product->exterior_color ?? '-' }} {{ $product->manufacturing_year ?? '-' }}
Action Logs
@forelse($logs_data as $log) @empty @endforelse
Date Module Status Remark Created By
{{ \Carbon\Carbon::parse($log->created_at)->format('d-m-Y H:i:s') }} {{ ucfirst($log->module_nm) }} {{ $log->status }} {{ $log->remark }} {{ $log->user_name ?? 'System' }}
No logs found for this Inventory
@endsection @section('scripts') @endsection