@extends('dashboard.layouts.app') @section('title', __('Edit Order')) @section('page_heading', __('Edit Order')) @section('breadcrumb') @endsection @section('content')

{{ __('Edit Order #') . $order->id }}

@csrf @method('PUT')
@error('source')
{{ $message }}
@enderror
@error('created_by_id')
{{ $message }}
@enderror
@error('assigned_to_id')
{{ $message }}
@enderror
@error('invoice_type')
{{ $message }}
@enderror
@error('coupon_code')
{{ $message }}
@enderror
@error('global_general_discount_id')
{{ $message }}
@enderror

{{ __('Order Items') }}

{{ __('Tracks') }}
@foreach($order->items as $index => $item) @if($item->item_type == 'track') @endif @endforeach
{{ __('Category') }} {{ __('Track') }} {{ __('Pricing Type') }} {{ __('Track Type') }} {{ __('Pricing Option') }} {{ __('Levels') }} {{ __('Price') }} {{ __('Discounted Price') }} {{ __('General Discount') }} {{ __('Actions') }}
{{ __('Placement Tests') }}
@foreach($order->items as $index => $item) @if($item->item_type == 'placement_test') @endif @endforeach
{{ __('Category') }} {{ __('Placement Test') }} {{ __('Pricing Type') }} {{ __('Pricing Option') }} {{ __('Quantity') }} {{ __('Price') }} {{ __('Discounted Price') }} {{ __('General Discount') }} {{ __('Actions') }}
{{ __('Gift Calls') }}
@foreach($order->items as $index => $item) @if($item->item_type == 'gift_call') @endif @endforeach
{{ __('Item Type') }} {{ __('Price') }} {{ __('Quantity') }} {{ __('Discounted Price') }} {{ __('General Discount') }} {{ __('Actions') }}
{{ __('Gift Call') }}
{{ __('Discussion Groups') }}
@foreach($order->items as $index => $item) @if($item->item_type == 'discussion_group') @endif @endforeach
{{ __('Item Type') }} {{ __('Price') }} {{ __('Quantity') }} {{ __('Discounted Price') }} {{ __('General Discount') }} {{ __('Actions') }}
{{ __('Discussion Group') }}
{{ __('Cancel') }}
@endsection @section('scripts') @endsection