{{ config('app.name') }}
{{ __('Home') }}
@if(config('app.blog.enabled'))
{{ __('Blog') }}
@endif @if(config('app.subscriptions.enabled'))
{{ __('Pricing') }}
@endif
{{ __('Support') }}
@foreach(config('categories.category_parents') as $category)
{{ __($category->name) }}
@endforeach
@foreach($selections as $title => $items)
{{ $title }}
@foreach(array_chunk($items, 2) as $items)
@foreach($items as $item)
{{ $item['name'] }}
@if($item['promotional_price'])
{{ price($item['price'], 1, 1, 2, 'code') }}
{{ price($item['promotional_price'], 1, 1, 2, 'code') }}
@else
{{ $item['price'] == 0 ? __('Free') : price($item['price'], 1, 1, 2, 'code') }}
@endif
@endforeach
@endforeach
@endforeach
@if(config('app.facebook'))
@endif @if(config('app.twitter'))
@endif @if(config('app.pinterest'))
@endif @if(config('app.youtube'))
@endif @if(config('app.tumblr'))
@endif
{{ __('Support') }}
-
{{ __('Terms and conditions') }}
-
{{ __('Privacy policy') }}
{{ __(':app_name © :year All right reserved', ['app_name' => config('app.name'), 'year' => date('y')]) }}