@extends('layout.app') @section('title', $title) @section('description', $description) @section('content')

Customer Details

Customer Photo
  • Channel Name: {{$customer->channel_name}}
  • Channel Description: {{$customer->description}}

Order List

@foreach($orders as $order) @endforeach @if($orders->isEmpty()) @endif
Order ID Product Name Date Amount
{{$order->id}} {{$order->product?->product_name??""}} {{$order->created_at}} ${{$order->amount}}

No orders found.

@endsection