@extends('front.include.app') @section('content')

Blood

Custom Seed Shop

Food Plot Seed Blends Reimagined

Your Previous Seeds Blends From Order History

@if ($orders->isNotEmpty())

Previous Blend Orders

@foreach ($orders as $order)
{{--

Order ID: {{ $order->order_number }}

--}} {{--
    --}} {{-- @foreach ($order->details as $item)--}} {{-- @if ($item->blend)--}} {{--
  • {{ $item->blend->name }} - ${{ $item->unit_price }}
  • --}} {{-- @endif--}} {{-- @endforeach--}} {{--
--}} @if ($order->details->isNotEmpty()) @foreach($order->details as $item) @if($item->blend)

Order ID: {{ $order->order_number }}

{{ $item->blend->name ?? 'Blend Name' }}

{!! $item->blend->description ?? 'No description available.' !!}

{{ $item->blend->name }}
Reorder Edit Seed Blend
@endif @endforeach @endif
@endforeach
@else

No previous blend orders found.

@endif
@endsection