@section('title', __('mail.product_creation.title'))
@extends('mail.master')
@section('content')
{{ __('mail.common.greeting', ['name' => $userName]) }}
{{ __('mail.product_creation.body') }}
@include('mail.partials.card-row', [
'label' => __('mail.product_creation.label'),
'value' => $product->name,
'link' => route('prd_products.edit', $product->uuid),
])
@include('mail.partials.card-row', [
'label' => __('mail.common.store'),
'value' => $product->store->commercial_name,
'link' => route('str_stores.edit', $product->store->uuid),
'highlighted' => false,
])
@include('mail.partials.card-row', [
'label' => __('mail.common.representative'),
'value' => $product->store->legalRepresentative->user->full_name,
'link' => route('usr_users.edit', $product->store->legalRepresentative->user->uuid),
'subtext' => $product->store->legalRepresentative->user->systemUser->login,
'highlighted' => false,
'last' => true,
])
@if ($product->status === 'active')
{{ __('mail.product_creation.cta') }}
@endif
{{ __('mail.product_creation.body_sub_1') }}
@endsection