@section('title', '- Payment completed ') @extends('layouts.app') @section('section')

Congratulations, the product {{$purchase->product->name}} you bought correctly

Order Details


Created on {{$purchase->created_at}} | Order #{{$purchase->id}}

Purchased product

{{$purchase->product->name}}

Product Price: {{$purchase->product->price}} eBits

@if(isset($purchase->delivery_cost))

Delivery: {{$purchase->delivery_cost}} eBits

@else

Delivery: 0.00 eBits

@endif

Total: {{$purchase->ebits}} eBits

Seller: {{$purchase->seller->first_name}} {{$purchase->seller->last_name}}

Shipping Address

{{$purchase->address->address}}

{{$purchase->address->city}} {{$purchase->address->state}}

{{$purchase->address->zip_code}}

@endsection