Skip to content

Commit

Permalink
Stantartization names
Browse files Browse the repository at this point in the history
  • Loading branch information
tabuna committed Apr 7, 2024
1 parent b83f1c9 commit 654c8d1
Show file tree
Hide file tree
Showing 144 changed files with 492 additions and 443 deletions.
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@
],
"aliases": {
"Alert": "Orchid\\Support\\Facades\\Alert",
"Dashboard": "Orchid\\Support\\Facades\\Dashboard"
"Orchid": "Orchid\\Support\\Facades\\Orchid",
"Dashboard": "Orchid\\Support\\Facades\\Orchid"
}
}
},
Expand Down
18 changes: 9 additions & 9 deletions config/platform.php → config/orchid.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
|
*/

'domain' => env('DASHBOARD_DOMAIN', null),
'domain' => env('ORCHID_DOMAIN', null),

/*
|--------------------------------------------------------------------------
Expand All @@ -25,11 +25,11 @@
|
| This prefix method can be used to specify the prefix of every route in
| the administrator dashboard. This way, you can easily change the path
| to a URL you find more appropriate. For instance: '/', '/admin', or '/panel'.
| to a URL you find more appropriate. For instance: '/', '/admin', or '/orchid'.
|
*/

'prefix' => env('DASHBOARD_PREFIX', '/admin'),
'prefix' => env('ORCHID_PREFIX', '/admin'),

/*
|--------------------------------------------------------------------------
Expand All @@ -46,7 +46,7 @@

'middleware' => [
'public' => ['web', 'cache.headers:private;must_revalidate;etag'],
'private' => ['web', 'platform', 'cache.headers:private;must_revalidate;etag'],
'private' => ['web', 'orchid', 'cache.headers:private;must_revalidate;etag'],
],

/*
Expand Down Expand Up @@ -95,11 +95,11 @@
| redirected to this page when they enter the dashboard or click on the
| dashboard's logo or links.
|
| Example: 'platform.main'
| Example: 'orchid.main'
|
*/

'index' => 'platform.main',
'index' => 'orchid.main',

/*
|--------------------------------------------------------------------------
Expand Down Expand Up @@ -185,7 +185,7 @@
*/

'attachment' => [
'disk' => env('DASHBOARD_FILESYSTEM_DISK', 'public'),
'disk' => env('ORCHID_FILESYSTEM_DISK', 'public'),
'generator' => \Orchid\Attachment\Engines\Generator::class,
],

Expand Down Expand Up @@ -286,11 +286,11 @@
| It determines whether the entire user screen will be used or whether
| the content will be compressed to a fixed width.
|
| Options: 'platform::workspace.compact', 'platform::workspace.full'
| Options: 'orchid::workspace.compact', 'orchid::workspace.full'
|
*/

'workspace' => 'platform::workspace.compact',
'workspace' => 'orchid::workspace.compact',

/*
|--------------------------------------------------------------------------
Expand Down
20 changes: 10 additions & 10 deletions resources/views/app.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,31 +21,31 @@
@stack('head')

<meta name="view-transition" content="same-origin">
<meta name="turbo-root" content="{{ Dashboard::prefix() }}">
<meta name="turbo-refresh-method" content="{{ config('platform.turbo.refresh-method', 'replace') }}">
<meta name="turbo-refresh-scroll" content="{{ config('platform.turbo.refresh-scroll', 'reset') }}">
<meta name="dashboard-prefix" content="{{ Dashboard::prefix() }}">
<meta name="turbo-root" content="{{ Orchid::prefix() }}">
<meta name="turbo-refresh-method" content="{{ config('orchid.turbo.refresh-method', 'replace') }}">
<meta name="turbo-refresh-scroll" content="{{ config('orchid.turbo.refresh-scroll', 'reset') }}">
<meta name="dashboard-prefix" content="{{ Orchid::prefix() }}">

@if(!config('platform.turbo.cache', false))
@if(!config('orchid.turbo.cache', false))
<meta name="turbo-cache-control" content="no-cache">
@endif

<script src="{{ mix('/js/manifest.js','vendor/orchid') }}" type="text/javascript"></script>
<script src="{{ mix('/js/vendor.js','vendor/orchid') }}" type="text/javascript"></script>
<script src="{{ mix('/js/orchid.js','vendor/orchid') }}" type="text/javascript"></script>

@foreach(Dashboard::getResource('stylesheets') as $stylesheet)
@foreach(Orchid::getResource('stylesheets') as $stylesheet)
<link rel="stylesheet" href="{{ $stylesheet }}">
@endforeach

@stack('stylesheets')

@foreach(Dashboard::getResource('scripts') as $scripts)
@foreach(Orchid::getResource('scripts') as $scripts)
<script src="{{ $scripts }}" defer type="text/javascript"></script>
@endforeach

@if(!empty(config('platform.vite', [])))
@vite(config('platform.vite'))
@if(!empty(config('orchid.vite', [])))
@vite(config('orchid.vite'))
@endif
</head>

Expand All @@ -62,7 +62,7 @@
</div>


@include('platform::partials.toast')
@include('orchid::partials.toast')
</div>

@stack('scripts')
Expand Down
8 changes: 4 additions & 4 deletions resources/views/auth.blade.php
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
@extends('platform::app')
@extends('orchid::app')


@section('body')

<div class="container-md">
<div class="form-signin h-full min-vh-100 d-flex flex-column justify-content-center">

<a class="d-flex justify-content-center mb-4 p-0 px-sm-5" href="{{Dashboard::prefix()}}">
@includeFirst([config('platform.template.header'), 'platform::header'])
<a class="d-flex justify-content-center mb-4 p-0 px-sm-5" href="{{Orchid::prefix()}}">
@includeFirst([config('orchid.template.header'), 'orchid::header'])
</a>

<div class="row justify-content-center">
Expand All @@ -20,7 +20,7 @@
</div>


@includeFirst([config('platform.template.footer'), 'platform::footer'])
@includeFirst([config('orchid.template.footer'), 'orchid::footer'])
</div>
</div>

Expand Down
4 changes: 2 additions & 2 deletions resources/views/auth/impersonation.blade.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@extends('platform::auth')
@extends('orchid::auth')
@section('title',__('Access Denied: Viewing as Another User'))

@section('content')
Expand All @@ -9,7 +9,7 @@
data-controller="form"
data-form-need-prevents-form-abandonment-value="false"
data-action="form#submit"
action="{{ route('platform.switch.logout') }}">
action="{{ route('orchid.switch.logout') }}">
@csrf

<p>
Expand Down
2 changes: 1 addition & 1 deletion resources/views/auth/lockme.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

<div class="row align-items-center">
<div class="col-md-6 col-xs-12">
<a href="{{ route('platform.login.lock') }}" class="small">
<a href="{{ route('orchid.login.lock') }}" class="small">
{{__('Sign in with another user.')}}
</a>
</div>
Expand Down
8 changes: 4 additions & 4 deletions resources/views/auth/login.blade.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@extends('platform::auth')
@extends('orchid::auth')
@section('title',__('Sign in to your account'))

@section('content')
Expand All @@ -10,10 +10,10 @@
data-controller="form"
data-form-need-prevents-form-abandonment-value="false"
data-action="form#submit"
action="{{ route('platform.login.auth') }}">
action="{{ route('orchid.login.auth') }}">
@csrf

@includeWhen($isLockUser,'platform::auth.lockme')
@includeWhen(!$isLockUser,'platform::auth.signin')
@includeWhen($isLockUser,'orchid::auth.lockme')
@includeWhen(!$isLockUser,'orchid::auth.signin')
</form>
@endsection
6 changes: 3 additions & 3 deletions resources/views/components/notification.blade.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<a href="{{ route('platform.notifications') }}"
<a href="{{ route('orchid.notifications') }}"
class="m-auto d-flex align-items-center btn btn-link position-relative px-1 py-0 h-100"
data-controller="notification"
data-notification-count="{{ count($notifications) }}"
data-notification-url="{{ route('platform.api.notifications') }}"
data-notification-url="{{ route('orchid.api.notifications') }}"
data-notification-method="post"
data-notification-interval="{{ config('platform.notifications.interval') }}"
data-notification-interval="{{ config('orchid.notifications.interval') }}"
>
<x-orchid-icon path="bs.bell" width="1.1em" height="1.1em" />

Expand Down
2 changes: 1 addition & 1 deletion resources/views/components/stream.blade.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@props(['target', 'action', 'push', 'rule' => \Orchid\Support\Facades\Dashboard::isPartialRequest()])
@props(['target', 'action', 'push', 'rule' => \Orchid\Support\Facades\Orchid::isPartialRequest()])


@if(filter_var($rule, FILTER_VALIDATE_BOOLEAN))
Expand Down
16 changes: 8 additions & 8 deletions resources/views/dashboard.blade.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@extends(config('platform.workspace', 'platform::workspace.compact'))
@extends(config('orchid.workspace', 'orchid::workspace.compact'))

@section('aside')
<div class="aside col-xs-12 col-xxl-2 bg-dark d-flex flex-column me-auto" data-controller="menu">
Expand All @@ -10,17 +10,17 @@
<span class="ms-2">@yield('title')</span>
</a>

<a class="header-brand order-last" href="{{ route(config('platform.index')) }}">
@includeFirst([config('platform.template.header'), 'platform::header'])
<a class="header-brand order-last" href="{{ route(config('orchid.index')) }}">
@includeFirst([config('orchid.template.header'), 'orchid::header'])
</a>
</header>

<nav class="aside-collapse w-100 d-xl-flex flex-column collapse-horizontal" id="headerMenuCollapse">

@include('platform::partials.search')
@include('orchid::partials.search')

<ul class="nav flex-column mb-md-1 mb-auto ps-0">
{!! Dashboard::renderMenu(\Orchid\Platform\Dashboard::MENU_MAIN) !!}
{!! Orchid::renderMenu() !!}
</ul>

<div class="h-100 w-100 position-relative to-top cursor d-none d-md-flex mt-md-5"
Expand All @@ -38,13 +38,13 @@ class="scroll-to-top"

<footer class="position-sticky bottom-0">
<div class="bg-dark position-relative overflow-hidden" style="padding-bottom: 10px;">
@includeWhen(Auth::check(), 'platform::partials.profile')
@includeWhen(Auth::check(), 'orchid::partials.profile')
</div>


{{--
<div class="mt-3">
@includeFirst([config('platform.template.footer'), 'platform::footer'])
@includeFirst([config('orchid.template.footer'), 'orchid::footer'])
</div>
--}}
Expand Down Expand Up @@ -80,6 +80,6 @@ class="breadcrumb-item"
</div>
</div>

@include('platform::partials.alert')
@include('orchid::partials.alert')
@yield('content')
@endsection
2 changes: 1 addition & 1 deletion resources/views/errors/404.blade.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@extends('platform::dashboard')
@extends('orchid::dashboard')

@section('title', '404')
@section('description', __("You requested a page that doesn't exist."))
Expand Down
2 changes: 1 addition & 1 deletion resources/views/fields/cropper.blade.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@component($typeForm, get_defined_vars())
<div data-controller="cropper"
data-cropper-value="{{ $attributes['value'] }}"
data-cropper-storage="{{ $storage ?? config('platform.attachment.disk', 'public') }}"
data-cropper-storage="{{ $storage ?? config('orchid.attachment.disk', 'public') }}"
data-cropper-width="{{ $width }}"
data-cropper-height="{{ $height }}"
data-cropper-min-width="{{ $minWidth }}"
Expand Down
4 changes: 2 additions & 2 deletions resources/views/fields/matrix.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<tbody>

@foreach($value as $key => $row)
@include('platform::partials.fields.matrixRow',['row' => $row, 'key' => $key])
@include('orchid::partials.fields.matrixRow',['row' => $row, 'key' => $key])
@endforeach

<tr class="add-row">
Expand All @@ -31,7 +31,7 @@
</tr>

<template class="matrix-template">
@include('platform::partials.fields.matrixRow',['row' => [], 'key' => '{index}'])
@include('orchid::partials.fields.matrixRow',['row' => [], 'key' => '{index}'])
</template>
</tbody>
</table>
Expand Down
2 changes: 1 addition & 1 deletion resources/views/fields/picture.blade.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@component($typeForm, get_defined_vars())
<div data-controller="picture"
data-picture-value="{{ $attributes['value'] }}"
data-picture-storage="{{ $storage ?? config('platform.attachment.disk', 'public') }}"
data-picture-storage="{{ $storage ?? config('orchid.attachment.disk', 'public') }}"
data-picture-target="{{ $target }}"
data-picture-url="{{ $url }}"
data-picture-max-file-size="{{ $maxFileSize }}"
Expand Down
2 changes: 1 addition & 1 deletion resources/views/fields/relation.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
data-relation-append="{{ $relationAppend }}"
data-relation-chunk="{{ $chunk }}"
data-relation-allow-empty="{{ $allowEmpty }}"
data-relation-route="{{ route('platform.systems.relation') }}"
data-relation-route="{{ route('orchid.systems.relation') }}"
data-relation-message-notfound="{{ __('No results found') }}"
data-relation-message-add="{{ __('Add') }}"
data-relation-allow-add="{{ var_export($allowAdd, true) }}"
Expand Down
2 changes: 1 addition & 1 deletion resources/views/fields/upload.blade.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@component($typeForm, get_defined_vars())
<div
data-controller="upload"
data-upload-storage="{{$storage ?? config('platform.attachment.disk', 'public')}}"
data-upload-storage="{{$storage ?? config('orchid.attachment.disk', 'public')}}"
data-upload-name="{{$name}}"
data-upload-id="dropzone-{{$id}}"
data-upload-data='@json($value)'
Expand Down
25 changes: 16 additions & 9 deletions resources/views/footer.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,16 @@
<div class="m-4 text-center text-muted">
<p>Crafted with

<span title="love from Lipetsk">
<svg height="1.5em" width="1.5em" class="text-success" fill="currentColor" role="img" viewBox="0 0 44.07 52.31" xmlns="http://www.w3.org/2000/svg">
<path d="m33.39 33.23c-1.48 1.03-2.83 2.2-4.06 3.52-.23.25-.41.8-.77.63-.38-.18.04-.64 0-1.12-2.09 1.39-3.66 3.21-5.36 5.04v-1.04c-2.14 1.43-4.59 2.12-5.98 4.33l-.1-.77-.22-.14c-2.22 2.74-5.49 4.65-6.41 8.63-.25-4.49-1.24-8.58-3.2-12.5l-.64.84c-.05-1.68-.47-3.07-1.15-4.42l-.58.94c-.31-1.09-.25-2.12-.57-3.07-.09-.26-.21-.54-.25-.84-.08-.5-.27-.97-.94-.36-.04-2.33-.87-4.43-1-6.68-.46.18-.5.77-1.04.79.16-2-.3-3.96-.34-6.08l-.44.89-.25-.17c-.1-.8 0-1.59.09-2.39.12-.93.22-1.87.31-2.81.03-.34.43-.84-.38-.85-.2 0-.12-.25-.07-.44.5-1.91.98-3.81 2.06-5.51 2.05-3.22 6.97-7.12 12.11-5.87 2.35.57 4.24 1.8 5.33 4.05.14.3.26.62.31.94.04.23-.03.56.25.58.27.01.31-.34.38-.56.73-2.42 1.44-4.84 2.58-7.11.18-.35.33-.73.56-1.04.18-.25.26-.72.66-.63.41.09.79.33.99.75.22.44-.1.71-.36.94-2.22 2.04-2.98 4.83-3.96 7.53.89-.91 1.63-1.94 2.6-2.76 3.63-3.08 7.69-4.2 12.22-2.46 4.06 1.56 6.51 4.63 7.73 8.78.91 3.11.62 6.13-.37 9.15-.31.95-.51 1.94-.77 2.91-.08.31-.07.72-.62.57-.11-.03-.35.17-.41.31-.66 1.45-1.83 2.57-2.57 3.97-.16.31-.28.64-.51 1.19l-.14-1.38c-1.41 1.8-3.43 2.87-4.69 4.73-.47-.42.06-.7-.06-1.01h.04l-.02-.02zm-14.81-16.07c-.56.3-.52.91-.68 1.4-.17.52-.33.82-.99.55-.99-.39-2.06-.56-3.12-.63-1.24-.09-2.5-.12-3.67.45.34.04.67.03 1.01 0 1.88-.16 3.7.15 5.46.8.54.2.82.43.59 1.14-.53 1.7-.94 3.44-1.38 5.17-.13.53-.34.78-.95.87-1.55.23-3.1.53-4.52 1.57 1.82.06 3.27-1.35 5.01-.89-.4 2.1-.78 4.15-1.18 6.2-.08.41-.15.86-.71.93-.22.03-.24.23-.11.33.55.43.29.97.2 1.46-.27 1.51-.58 3.02-.87 4.53.3-.38.52-.79.57-1.22.06-.5.3-.91.44-1.37.58-2.05.6-2.05 2.14-.47.08-.73-.49-1.01-.88-1.39-.24-.23-.57-.36-.49-.79.36-2.06.71-4.12 1.05-6.18.08-.46.27-.49.73-.43 1.03.12 1.79.76 2.88 1.34-.79-1.08-1.61-1.55-2.67-1.67-.63-.07-.92-.26-.63-1.06.49-1.37.93-2.8 1.05-4.23.1-1.14.67-1.16 1.46-1.2 1.04-.05 2.06.1 3.1.14-1.03-.51-2.13-.64-3.24-.55-.62.05-.78-.08-.6-.75.36-1.34.89-2.65 1-4.06.47.09.82-.18 1.18-.39 1.04-.57 2.12-1.04 3.24-1.44 1.66-.6 3.39-.91 5.12-1.21-3.28-.24-6.2.95-9.14 2.39.23-1.53.96-2.81.93-4.26-.53.74-.28 1.76-.94 2.48-1.17-2.34-2.55-4.46-4.98-5.64 2.52 2.14 4.78 4.4 4.61 8.09zm-7.69 18.99c.65-.06 1.09-.32 1.68-.72-.76-.01-1.17.34-1.68.72z"/>
<span title="love from Lipetsk">
<svg height="1.5em" width="1.5em" class="text-success" fill="currentColor" role="img"
viewBox="0 0 44.07 52.31" xmlns="http://www.w3.org/2000/svg">
<path
d="m33.39 33.23c-1.48 1.03-2.83 2.2-4.06 3.52-.23.25-.41.8-.77.63-.38-.18.04-.64 0-1.12-2.09 1.39-3.66 3.21-5.36 5.04v-1.04c-2.14 1.43-4.59 2.12-5.98 4.33l-.1-.77-.22-.14c-2.22 2.74-5.49 4.65-6.41 8.63-.25-4.49-1.24-8.58-3.2-12.5l-.64.84c-.05-1.68-.47-3.07-1.15-4.42l-.58.94c-.31-1.09-.25-2.12-.57-3.07-.09-.26-.21-.54-.25-.84-.08-.5-.27-.97-.94-.36-.04-2.33-.87-4.43-1-6.68-.46.18-.5.77-1.04.79.16-2-.3-3.96-.34-6.08l-.44.89-.25-.17c-.1-.8 0-1.59.09-2.39.12-.93.22-1.87.31-2.81.03-.34.43-.84-.38-.85-.2 0-.12-.25-.07-.44.5-1.91.98-3.81 2.06-5.51 2.05-3.22 6.97-7.12 12.11-5.87 2.35.57 4.24 1.8 5.33 4.05.14.3.26.62.31.94.04.23-.03.56.25.58.27.01.31-.34.38-.56.73-2.42 1.44-4.84 2.58-7.11.18-.35.33-.73.56-1.04.18-.25.26-.72.66-.63.41.09.79.33.99.75.22.44-.1.71-.36.94-2.22 2.04-2.98 4.83-3.96 7.53.89-.91 1.63-1.94 2.6-2.76 3.63-3.08 7.69-4.2 12.22-2.46 4.06 1.56 6.51 4.63 7.73 8.78.91 3.11.62 6.13-.37 9.15-.31.95-.51 1.94-.77 2.91-.08.31-.07.72-.62.57-.11-.03-.35.17-.41.31-.66 1.45-1.83 2.57-2.57 3.97-.16.31-.28.64-.51 1.19l-.14-1.38c-1.41 1.8-3.43 2.87-4.69 4.73-.47-.42.06-.7-.06-1.01h.04l-.02-.02zm-14.81-16.07c-.56.3-.52.91-.68 1.4-.17.52-.33.82-.99.55-.99-.39-2.06-.56-3.12-.63-1.24-.09-2.5-.12-3.67.45.34.04.67.03 1.01 0 1.88-.16 3.7.15 5.46.8.54.2.82.43.59 1.14-.53 1.7-.94 3.44-1.38 5.17-.13.53-.34.78-.95.87-1.55.23-3.1.53-4.52 1.57 1.82.06 3.27-1.35 5.01-.89-.4 2.1-.78 4.15-1.18 6.2-.08.41-.15.86-.71.93-.22.03-.24.23-.11.33.55.43.29.97.2 1.46-.27 1.51-.58 3.02-.87 4.53.3-.38.52-.79.57-1.22.06-.5.3-.91.44-1.37.58-2.05.6-2.05 2.14-.47.08-.73-.49-1.01-.88-1.39-.24-.23-.57-.36-.49-.79.36-2.06.71-4.12 1.05-6.18.08-.46.27-.49.73-.43 1.03.12 1.79.76 2.88 1.34-.79-1.08-1.61-1.55-2.67-1.67-.63-.07-.92-.26-.63-1.06.49-1.37.93-2.8 1.05-4.23.1-1.14.67-1.16 1.46-1.2 1.04-.05 2.06.1 3.1.14-1.03-.51-2.13-.64-3.24-.55-.62.05-.78-.08-.6-.75.36-1.34.89-2.65 1-4.06.47.09.82-.18 1.18-.39 1.04-.57 2.12-1.04 3.24-1.44 1.66-.6 3.39-.91 5.12-1.21-3.28-.24-6.2.95-9.14 2.39.23-1.53.96-2.81.93-4.26-.53.74-.28 1.76-.94 2.48-1.17-2.34-2.55-4.46-4.98-5.64 2.52 2.14 4.78 4.4 4.61 8.09zm-7.69 18.99c.65-.06 1.09-.32 1.68-.72-.76-.01-1.17.34-1.68.72z"/>
</svg>
</span>

by Alexandr Chernyaev</p>
by Alexandr Chernyaev
</p>
</div>

<p class="small text-center mb-1 px-5">
Expand All @@ -17,18 +20,22 @@

<ul class="nav justify-content-center mb-5">
<li class="nav-item"><a href="https://orchid.software" class="nav-link px-2 text-muted">Documentation</a></li>
<li class="nav-item"><a href="https://github.com/orchidsoftware/platform/discussions" target="_blank" class="nav-link px-2 text-muted">Discussions</a></li>
<li class="nav-item"><a href="https://opencollective.com/orchid" target="_blank" class="nav-link px-2 text-muted">Donation</a></li>
<li class="nav-item"><a href="https://orchid.software/en/hig/" target="_blank" class="nav-link px-2 text-muted">Design</a></li>
<li class="nav-item"><a href="https://github.com/orchidsoftware" target="_blank" class="nav-link px-2 text-muted">GitHub</a></li>
<li class="nav-item"><a href="https://github.com/orchidsoftware/platform/discussions" target="_blank"
class="nav-link px-2 text-muted">Discussions</a></li>
<li class="nav-item"><a href="https://opencollective.com/orchid" target="_blank"
class="nav-link px-2 text-muted">Donation</a></li>
<li class="nav-item"><a href="https://orchid.software/en/hig/" target="_blank" class="nav-link px-2 text-muted">Design</a>
</li>
<li class="nav-item"><a href="https://github.com/orchidsoftware" target="_blank"
class="nav-link px-2 text-muted">GitHub</a></li>
</ul>
@else

<div class="text-center user-select-none my-4 d-none d-lg-block">
<p class="small mb-0">
{{ __('The application code is published under the MIT license.') }} 2016 - {{date('Y')}}<br>
<a href="http://orchid.software" target="_blank" rel="noopener">
{{ __('Version') }}: {{\Orchid\Platform\Dashboard::VERSION}}
{{ __('Version') }}: {{\Orchid\Platform\Orchid::VERSION}}
</a>
</p>
</div>
Expand Down
Loading

0 comments on commit 654c8d1

Please sign in to comment.