-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathComponent.php
More file actions
33 lines (32 loc) · 805 Bytes
/
Copy pathComponent.php
File metadata and controls
33 lines (32 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
return [
'composer' => ['"Components\\\Category\\\": "components/Category/src/"'],
'providers'=>['Components\Category\CategoryServiceProvider::class'],
// 'aliases'=>["'Zipper' => Chumper\Zipper\Facades\Zipper::class,"],
'vendor'=>true,
'migrate'=>true,
'settings'=> [
'name'=>'Kategoriler',
'description'=>'Kategoriler',
'folder'=>'components::category',
'files'=>[
[
'name'=>'Kategoriler',
'file'=>'index'
],
],
],
'sidebar'=>[
'title'=>'Kategoriler',
'route'=>'admin.category.index',
'path'=>'admin/category,admin/category/*',
],
'sidebar_lang'=>[
['title'=>'Kategoriler',"lang"=>'tr'],
['title'=>'Categories',"lang"=>'en'],
],
'pages'=>[
'admin/category',
'admin/category/*',
],
];