@component('shop::emails.layout')

@lang('shop::app.rma.mail.customer-rma-create.heading')

@lang('shop::app.rma.mail.customer-rma-create.hello', ['name' => $rma->order->customer->name]), 👋

@lang('shop::app.rma.mail.customer-rma-create.greeting', [ 'order_id' => '#' . $rma->order_id . '', ])

@lang('shop::app.rma.mail.customer-rma-create.summary')

@lang('shop::app.rma.mail.customer-rma-create.rma-id')

{{ $rma->id }}

@lang('shop::app.rma.mail.customer-rma-create.order-id')

#{{ $rma->order_id }}

@lang('shop::app.rma.mail.customer-rma-create.additional-information')

{{ $rma->information }}

@lang('shop::app.rma.mail.customer-rma-create.requested-rma-product')

@php($lang = Lang::get('shop::app.rma.mail.customer-data-table-heading')) @foreach ($lang as $tableHeading) @endforeach @foreach ($rma->items as $key => $item) @endforeach
{{ $tableHeading }}
{{ $item->orderItem->name }} {{ $item->quantity }} {{ $item->reason->title }} {{ $item->orderItem->sku }}
@endcomponent