@extends('gorevsitesi.layouts.app') @section('title', __('My Orders')) @section('content')
@lang('Order Number') | @lang('Product') | @lang('Quantity') | @lang('Total Amount') | @lang('Status') | @lang('Order Date') | @lang('Actions') |
---|---|---|---|---|---|---|
{{ $order->order_number }} | {{ $order->product_name }} | {{ $order->quantity }} | {{ $order->formatted_total }} | {{ $order->status_text }} | {{ $order->created_at }} | @lang('View') @if($order->can_be_cancelled) @endif |