@extends('admin.master_layout') @section('contant') @push('scripts') @endpush
@php $image_path = public_path('images/user_img/thumbnail/' . $customer->photo); $default_image_path = asset('images/male.jpg'); @endphp @if(file_exists($image_path) && !is_dir($image_path)) @else User Image @endif
Customer ID {{ $customer->customer_id }}
Customer Name {{ $customer->name }}
Contact {{ $customer->contact }}
Email ID {{ $customer->email }}
Address {{ $customer->address }}
@push('js_scripts') @endpush @endsection