-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added sub-menu repsonsive homayon
- Loading branch information
Showing
13 changed files
with
121 additions
and
0 deletions.
There are no files selected for viewing
16 changes: 16 additions & 0 deletions
16
resources/views/segments/category/CategoryDescription/CategoryDescription.blade.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<section class="CategoryDescription live-setting" data-live="{{$data->area_name.'_'.$data->part}}" > | ||
<div class="{{gfx()['container']}} py-3"> | ||
<div class="row align-items-center"> | ||
<div class="col-md-6"> | ||
<h1> | ||
{{$category->name}} | ||
</h1> | ||
{{$category->description}} | ||
</div> | ||
<div class="col-md-6"> | ||
<img src=" {{$category->imgUrl()}}" alt="{{$category->name}}" class="img-fluid"> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
</section> |
Empty file.
10 changes: 10 additions & 0 deletions
10
resources/views/segments/category/CategoryDescription/CategoryDescription.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"name": "CategoryDescription", | ||
"version": "1.0", | ||
"author": "xStack", | ||
"email": "[email protected]", | ||
"license": "GPL-3.0-or-later", | ||
"url": "https:\/\/xstack.ir", | ||
"author_url": "https:\/\/4xmen.ir", | ||
"packages": [] | ||
} |
21 changes: 21 additions & 0 deletions
21
resources/views/segments/category/CategoryDescription/CategoryDescription.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?php | ||
|
||
namespace Resources\Views\Segments; | ||
|
||
use App\Models\Part; | ||
|
||
class CategoryDescription | ||
{ | ||
public static function onAdd(Part $part = null) | ||
{ | ||
|
||
} | ||
public static function onRemove(Part $part = null) | ||
{ | ||
|
||
} | ||
public static function onMount(Part $part = null) | ||
{ | ||
return $part; | ||
} | ||
} |
3 changes: 3 additions & 0 deletions
3
resources/views/segments/category/CategoryDescription/CategoryDescription.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.CategoryDescription { | ||
// scss | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 15 additions & 0 deletions
15
resources/views/segments/group/GroupDescription/GroupDescription.blade.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<section class="GroupDescription live-setting" data-live="{{$data->area_name.'_'.$data->part}}" > | ||
<div class="{{gfx()['container']}} py-3"> | ||
<div class="row align-items-center"> | ||
<div class="col-md-6"> | ||
<h1> | ||
{{$group->name}} | ||
</h1> | ||
{{$group->description}} | ||
</div> | ||
<div class="col-md-6"> | ||
<img src="{{$group->imgUrl()}}" alt="{{$group->name}}" class="img-fluid"> | ||
</div> | ||
</div> | ||
</div> | ||
</section> |
Empty file.
10 changes: 10 additions & 0 deletions
10
resources/views/segments/group/GroupDescription/GroupDescription.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"name": "GroupDescription", | ||
"version": "1.0", | ||
"author": "xStack", | ||
"email": "[email protected]", | ||
"license": "GPL-3.0-or-later", | ||
"url": "https:\/\/xstack.ir", | ||
"author_url": "https:\/\/4xmen.ir", | ||
"packages": [] | ||
} |
21 changes: 21 additions & 0 deletions
21
resources/views/segments/group/GroupDescription/GroupDescription.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?php | ||
|
||
namespace Resources\Views\Segments; | ||
|
||
use App\Models\Part; | ||
|
||
class GroupDescription | ||
{ | ||
public static function onAdd(Part $part = null) | ||
{ | ||
|
||
} | ||
public static function onRemove(Part $part = null) | ||
{ | ||
|
||
} | ||
public static function onMount(Part $part = null) | ||
{ | ||
return $part; | ||
} | ||
} |
3 changes: 3 additions & 0 deletions
3
resources/views/segments/group/GroupDescription/GroupDescription.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.GroupDescription { | ||
// scss | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters