@extends('layouts.customer') @section('content')
@foreach($customer->transection_points as $index => $transaction)
    {{ $index }} => {{ json_encode($transaction, JSON_PRETTY_PRINT) }}
@endforeach
Detail Picture

{{ $customer->first_name ?: '' }} {{ $customer->last_name ?: '' }}

{{ $customer->email ?: '' }} {{ $customer->phone ? '|' : '' }} {{ $customer->phone ?: '' }}

Address

{{ $customer->full_address }}

{{-- Modals rendered after the table to keep HTML valid --}} @foreach($customer->transection_points as $reward)
{{--
--}}
@endsection