68 lines
3.9 KiB
PHP
68 lines
3.9 KiB
PHP
<footer class="modern-footer">
|
|
<div class="modern-footer__main">
|
|
<div>
|
|
<h4 class="modern-footer__brand-title">{{ config('app.name', 'سورنا POS') }}</h4>
|
|
<p class="modern-footer__brand-desc">
|
|
راهکار جامع و سازمانی مدیریت فروش، انبار، حسابداری و صندوق فروش برای کسبوکارهای حرفهای.
|
|
</p>
|
|
@if(isset($__site_details['follow_us']) && !empty($__site_details['follow_us']))
|
|
<ul class="modern-footer__social">
|
|
@foreach($__site_details['follow_us'] as $key => $follow_us)
|
|
@if($key == 'facebook' && !empty($follow_us))
|
|
<li><a href="{{ $follow_us }}" target="_blank" title="@lang('cms::lang.facebook')"><i class="fab fa-facebook-f"></i></a></li>
|
|
@endif
|
|
@if($key == 'instagram' && !empty($follow_us))
|
|
<li><a href="{{ $follow_us }}" target="_blank" title="@lang('cms::lang.instagram')"><i class="fab fa-instagram"></i></a></li>
|
|
@endif
|
|
@if($key == 'twitter' && !empty($follow_us))
|
|
<li><a href="{{ $follow_us }}" target="_blank" title="@lang('cms::lang.twitter')"><i class="fab fa-twitter"></i></a></li>
|
|
@endif
|
|
@if($key == 'linkedin' && !empty($follow_us))
|
|
<li><a href="{{ $follow_us }}" target="_blank" title="@lang('cms::lang.linkedin')"><i class="fab fa-linkedin-in"></i></a></li>
|
|
@endif
|
|
@if($key == 'youtube' && !empty($follow_us))
|
|
<li><a href="{{ $follow_us }}" target="_blank" title="@lang('cms::lang.youtube')"><i class="fab fa-youtube"></i></a></li>
|
|
@endif
|
|
@endforeach
|
|
</ul>
|
|
@endif
|
|
</div>
|
|
<div>
|
|
<h5 class="modern-footer__heading">دسترسی سریع</h5>
|
|
<ul class="modern-footer__links">
|
|
<li><a href="{{ url('/') }}">@lang('cms::lang.home')</a></li>
|
|
@if($__blog_count >= 1)
|
|
<li><a href="{{ action([\Modules\Cms\Http\Controllers\CmsController::class, 'getBlogList']) }}">{{ __('cms::lang.blogs') }}</a></li>
|
|
@endif
|
|
<li><a href="{{ route('cms.contact.us') }}">@lang('cms::lang.contact_us')</a></li>
|
|
@if(Route::has('login') && !Auth::check())
|
|
<li><a href="{{ route('login') }}">@lang('lang_v1.login')</a></li>
|
|
@endif
|
|
</ul>
|
|
</div>
|
|
<div>
|
|
<h5 class="modern-footer__heading">خدمات</h5>
|
|
<ul class="modern-footer__links">
|
|
<li><a href="{{ route('business.getRegister') }}">@lang('cms::lang.try_for_free')</a></li>
|
|
@if(Route::has('pricing') && config('app.env') != 'demo')
|
|
<li><a href="{{ action([\Modules\Superadmin\Http\Controllers\PricingController::class, 'index']) }}">@lang('superadmin::lang.pricing')</a></li>
|
|
@endif
|
|
@if(count($__pages) > 0)
|
|
@foreach($__pages->take(4) as $footerPage)
|
|
<li>
|
|
<a href="{{ action([\Modules\Cms\Http\Controllers\CmsPageController::class, 'showPage'], ['page' => $footerPage->slug]) }}">
|
|
{{ $footerPage->title }}
|
|
</a>
|
|
</li>
|
|
@endforeach
|
|
@endif
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div class="modern-footer__inner">
|
|
<p class="modern-footer__copy">
|
|
© {{ date('Y') }} {{ config('app.name', 'سورنا POS') }}. تمام حقوق محفوظ است.
|
|
</p>
|
|
</div>
|
|
</footer>
|