18 lines
563 B
PHP
18 lines
563 B
PHP
@extends('layout.index', [
|
|
'title' => __('shop.articles.title'),
|
|
'subtitle' => __('shop.articles.edit'),
|
|
'breadcrumb' => [__('shop.articles.title'), __('shop.articles.edit')],
|
|
])
|
|
|
|
@section('content')
|
|
@php
|
|
$duplicateUrl = \Route::has('Admin.Shop.Articles.duplicate')
|
|
? route('Admin.Shop.Articles.duplicate', $article['id'] ?? null)
|
|
: null;
|
|
@endphp
|
|
@include('Admin.Shop.Articles.form', [
|
|
'duplicate_url' => $duplicateUrl,
|
|
'cancel_url' => route('Admin.Shop.Articles.index'),
|
|
])
|
|
@endsection
|