@extends('master') @push('styles') @endpush @section('content')
Kembali

{{ $customer->name }}

Tipe Customer
{{ $customer->type == 1 ? 'Dealer' : ($customer->type == 2 ? 'Retailer' : 'Petani') }}
Nama Pemilik
{{ $customer->owner_name }}
No. HP
{{ $customer->phone_number }}
Alamat
{{ $customer->address }}
Tanggal Terdaftar
{{ $customer->created_at->format('d M Y') }}
@if($customer->type == 3)
Luas Lahan
{{ $customer->land_area ? number_format($customer->land_area, 0, ',', '.') . ' m²' : '—' }}
Tipe Crop
{{ $customer->type_crop ?? '—' }}
@endif
Tim FA & Agronomis
0 orang
@endsection @push('scripts') @endpush