@php // Settings use App\Setting; use App\Page; $setting = Setting::where('status', 1)->first(); $pages = Page::where('template_id', 'GoBizOriginal')->get(); @endphp
{{ $settings->site_name }}

{{ __('My Account') }}

{{-- Custom pages --}}

{{ __('Useful Links') }}

    {{-- NFC Card Ordering --}} @if ($config[76]->config_value == '1' && $config[97]->config_value == '1')
  • {{ __('NFC Card Ordering') }}
  • @endif {{-- Directory Listing --}} @if (is_dir(base_path('plugins/Directory'))) @php // Directory $directory_settings = DB::table('directory_settings')->first(); @endphp @if ($directory_settings->directory == 1)
  • {{ __('Directory Listing') }}
  • @endif @endif {{-- Custom Page --}} @foreach ($pages as $page) @if ($page->page_name == 'Custom Page' && $page->status == 'active')
  • {{ __($page->section_name) }}
  • @endif @endforeach

{{ __('Legals') }}

© {{ __('Copyright') }} {{ Carbon\Carbon::now()->format('Y') }}. {{ __('All Rights Reserved by') }} {{ config('app.name') }}.