This commit is contained in:
2026-02-03 15:31:29 +05:00
commit 326c677e8d
2800 changed files with 1489388 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
@if($resource->resource_type && $resource->resource_id)
<a class="link-default" href="/turkmenpostadmin/resources/{{$resource->resource_type}}/{{$resource->resource_id}}">
{{ __(ucfirst($resource->resource_type)) }}, {{ $resource->{$resource->resource_type}?->name }}
</a>
@endif

View File

@@ -0,0 +1,13 @@
<span class="link-default">
{{
$model->customer_address ? $model->customer_address : '--------'
}},
{{
$model->province ? $model->province->name . ', ' : ''
}}
{{
$model->region ? App\Models\System\Settings\Location\Region::labelFor($model->region) : '--------'
}}
</span>

View File

@@ -0,0 +1,4 @@
<span class="link-default">
{{ $model->delivery_time ?: '--------'}},
{{ $model->delivery_at?->format('d.m.Y') }}
</span>

View File

@@ -0,0 +1,4 @@
<span class="link-default">
{{ $model->shipping_price ?: App\Models\Ecommerce\Product\Order\Shipping\OrderShipping::priceFor($model->shipping_method) }} TMT,
{{ App\Models\Ecommerce\Product\Order\Shipping\OrderShipping::formattedShippingMethod($model->shipping_method) }}
</span>