12 lines
332 B
PHP
12 lines
332 B
PHP
@extends('layout.index', [
|
|
'title' => __('shop.articles.title'),
|
|
'subtitle' => __('shop.articles.add'),
|
|
'breadcrumb' => [__('shop.articles.title'), __('shop.articles.add')],
|
|
])
|
|
|
|
@section('content')
|
|
@include('Admin.Shop.Articles.form', [
|
|
'cancel_url' => route('Admin.Shop.Articles.index'),
|
|
])
|
|
@endsection
|