@extends('layout') @section('title','View Customer') @section('content')
My Customers
@php use Carbon\Carbon; @endphp @foreach($customer as $customers) @php $dob = Carbon::parse($customers->dob); $today = Carbon::now(); $years = $today->diffInYears($dob); $months = $today->diffInMonths($dob) % 12; @endphp @endforeach
Customer Details Address Age Since Revenue Status Actions
Prabhakar {{$customers->customer_id}}
{{$customers->first_name}}
{{$customers->email}}
{{$customers->mobile}}
{{$customers->address_line_1}}
{{$customers->address_line_2}}
{{$months}} Years {{Carbon::parse($customers->created_at)->format('Y-m-d');}} @if($customers->status == 1) Active @else In-Active @endif Edit View Tx
@endsection