-
Notifications
You must be signed in to change notification settings - Fork 429
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #618 from nasirkhan/dev
Prettier code formatting and config update
- Loading branch information
Showing
154 changed files
with
4,711 additions
and
2,943 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -2,6 +2,7 @@ node_modules | |
dist | ||
.env* | ||
vendor/ | ||
/storage | ||
/vendor | ||
public/ | ||
.git | ||
|
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
18 changes: 12 additions & 6 deletions
18
Modules/Category/Resources/views/backend/categories/create.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 |
---|---|---|
@@ -1,18 +1,24 @@ | ||
@extends('backend.layouts.app') | ||
@extends("backend.layouts.app") | ||
|
||
@section('title') | ||
@section("title") | ||
{{ __($module_action) }} {{ __($module_title) }} | ||
@endsection | ||
|
||
@section('breadcrumbs') | ||
@section("breadcrumbs") | ||
<x-backend.breadcrumbs> | ||
<x-backend.breadcrumb-item route='{{ route("backend.$module_name.index") }}' icon='{{ $module_icon }}'> | ||
<x-backend.breadcrumb-item route='{{ route("backend.$module_name.index") }}' icon="{{ $module_icon }}"> | ||
{{ __($module_title) }} | ||
</x-backend.breadcrumb-item> | ||
<x-backend.breadcrumb-item type="active">{{ __($module_action) }}</x-backend.breadcrumb-item> | ||
</x-backend.breadcrumbs> | ||
@endsection | ||
|
||
@section('content') | ||
<x-backend.layouts.create :module_name="$module_name" :module_path="$module_path" :module_title="$module_title" :module_icon="$module_icon" :module_action="$module_action" /> | ||
@section("content") | ||
<x-backend.layouts.create | ||
:module_name="$module_name" | ||
:module_path="$module_path" | ||
:module_title="$module_title" | ||
:module_icon="$module_icon" | ||
:module_action="$module_action" | ||
/> | ||
@endsection |
20 changes: 13 additions & 7 deletions
20
Modules/Category/Resources/views/backend/categories/edit.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 |
---|---|---|
@@ -1,19 +1,25 @@ | ||
@extends('backend.layouts.app') | ||
@extends("backend.layouts.app") | ||
|
||
@section('title') | ||
@section("title") | ||
{{ __($module_action) }} {{ __($module_title) }} | ||
@endsection | ||
|
||
@section('breadcrumbs') | ||
@section("breadcrumbs") | ||
<x-backend.breadcrumbs> | ||
<x-backend.breadcrumb-item route='{{ route("backend.$module_name.index") }}' icon='{{ $module_icon }}'> | ||
<x-backend.breadcrumb-item route='{{ route("backend.$module_name.index") }}' icon="{{ $module_icon }}"> | ||
{{ __($module_title) }} | ||
</x-backend.breadcrumb-item> | ||
<x-backend.breadcrumb-item type="active">{{ __($module_action) }}</x-backend.breadcrumb-item> | ||
</x-backend.breadcrumbs> | ||
@endsection | ||
|
||
@section('content') | ||
<x-backend.layouts.edit :data="$$module_name_singular" :module_name="$module_name" :module_path="$module_path" :module_title="$module_title" :module_icon="$module_icon" | ||
:module_action="$module_action" /> | ||
@section("content") | ||
<x-backend.layouts.edit | ||
:data="$$module_name_singular" | ||
:module_name="$module_name" | ||
:module_path="$module_path" | ||
:module_title="$module_title" | ||
:module_icon="$module_icon" | ||
:module_action="$module_action" | ||
/> | ||
@endsection |
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
Oops, something went wrong.