@extends('admin.app') @section('content')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{{csrf_field()}}
company logo
SİPARİŞ NO.

{{$order->id}}

SİPARİŞ TARİHİ

{{date('d/m/Y H:i',strtotime($order->created_at))}}

Sipariş Detayları

Ödeme Yöntemi:

Kargo:

Müşteri

@foreach($order->products as $product) @endforeach
Ürün Ürün Kodu Adet Birim Fiyat Tutar
{{$product->product_name}} {{$product->product->stock_code}} {{number_format(round($product->product_price,2),2)}}₺ {{number_format(round($product->product_total,2),2)}}₺
@foreach($order->totals as $total) @endforeach
Ürün Toplam {{$order->total_price}}₺
KDV {{$order->total_tax}}₺
{{$total->name}} {{$total->price}}₺
Toplam {{$order->total_order}}₺
@endsection @section('css') @endsection @section('js')