Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
F
fazo
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nuriddin
fazo
Commits
eaaf4018
Commit
eaaf4018
authored
Jun 26, 2019
by
Ruslan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor improvement
parent
0e72694e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
38 additions
and
4332 deletions
+38
-4332
workspace.xml
.idea/workspace.xml
+33
-4327
package_menu.blade.php
resources/views/pages/parcels/package_menu.blade.php
+5
-5
No files found.
.idea/workspace.xml
View file @
eaaf4018
This source diff could not be displayed because it is too large. You can
view the blob
instead.
resources/views/pages/parcels/package_menu.blade.php
View file @
eaaf4018
...
@@ -9,27 +9,27 @@
...
@@ -9,27 +9,27 @@
</a>
</a>
<a
class=
"nav-item nav-link {{ $active == \App\Models\Package::STATUS_PENDING ? 'active' : '' }}"
href=
"{{ route('packagePending') }}"
>
Ожидаются
<a
class=
"nav-item nav-link {{ $active == \App\Models\Package::STATUS_PENDING ? 'active' : '' }}"
href=
"{{ route('packagePending') }}"
>
Ожидаются
@if($countPackages['onPending'] !== 0)
@if($countPackages['onPending'] !== 0)
<span
class=
"badge badge-pill badge-
primary
"
>
{{ $countPackages['onPending'] }}
</span>
<span
class=
"badge badge-pill badge-
{{ \App\Models\Package::$statuses_colors[\App\Models\Package::STATUS_PENDING] }}
"
>
{{ $countPackages['onPending'] }}
</span>
@endif
@endif
</a>
</a>
<a
class=
"nav-item nav-link {{ $active == \App\Models\Package::STATUS_INSTORE ? 'active' : '' }}"
href=
"{{ route('packageInwarehouse') }}"
>
На складе
<a
class=
"nav-item nav-link {{ $active == \App\Models\Package::STATUS_INSTORE ? 'active' : '' }}"
href=
"{{ route('packageInwarehouse') }}"
>
На складе
@if($countPackages['inStore'] !== 0)
@if($countPackages['inStore'] !== 0)
<span
class=
"badge badge-pill badge-
primary
"
>
{{ $countPackages['inStore'] }}
</span>
<span
class=
"badge badge-pill badge-
{{ \App\Models\Package::$statuses_colors[\App\Models\Package::STATUS_INSTORE] }}
"
>
{{ $countPackages['inStore'] }}
</span>
@endif
@endif
</a>
</a>
<a
class=
"nav-item nav-link {{ $active == \App\Models\Package::STATUS_ONPACKING ? 'active' : '' }}"
href=
"{{ route('packagePacking') }}"
>
На упаковке
<a
class=
"nav-item nav-link {{ $active == \App\Models\Package::STATUS_ONPACKING ? 'active' : '' }}"
href=
"{{ route('packagePacking') }}"
>
На упаковке
@if($countPackages['onPacking'] !== 0)
@if($countPackages['onPacking'] !== 0)
<span
class=
"badge badge-pill badge-
primary
"
>
{{ $countPackages['onPacking'] }}
</span>
<span
class=
"badge badge-pill badge-
{{ \App\Models\Package::$statuses_colors[\App\Models\Package::STATUS_ONPACKING] }}
"
>
{{ $countPackages['onPacking'] }}
</span>
@endif
@endif
</a>
</a>
<a
class=
"nav-item nav-link {{ $active == \App\Models\Package::STATUS_SENT ? 'active' : '' }}"
href=
"{{ route('packageSent') }}"
>
Отправленные
<a
class=
"nav-item nav-link {{ $active == \App\Models\Package::STATUS_SENT ? 'active' : '' }}"
href=
"{{ route('packageSent') }}"
>
Отправленные
@if($countPackages['sent'] !== 0)
@if($countPackages['sent'] !== 0)
<span
class=
"badge badge-pill badge-
primary
"
>
{{ $countPackages['sent'] }}
</span>
<span
class=
"badge badge-pill badge-
{{ \App\Models\Package::$statuses_colors[\App\Models\Package::STATUS_SENT] }}
"
>
{{ $countPackages['sent'] }}
</span>
@endif
@endif
</a>
</a>
<a
class=
"nav-item nav-link {{ $active == \App\Models\Package::STATUS_DELIVERED ? 'active' : '' }}"
href=
"{{ route('packageDelivered') }}"
>
Доставленные
<a
class=
"nav-item nav-link {{ $active == \App\Models\Package::STATUS_DELIVERED ? 'active' : '' }}"
href=
"{{ route('packageDelivered') }}"
>
Доставленные
@if($countPackages['delivered'] !== 0)
@if($countPackages['delivered'] !== 0)
<span
class=
"badge badge-pill badge-
primary
"
>
{{ $countPackages['delivered'] }}
</span>
<span
class=
"badge badge-pill badge-
{{ \App\Models\Package::$statuses_colors[\App\Models\Package::STATUS_DELIVERED] }}
"
>
{{ $countPackages['delivered'] }}
</span>
@endif
@endif
</a>
</a>
</div>
</div>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment