10 lines
263 B
PHP
10 lines
263 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')
|
|
@endsection
|