@lang('SIGN UP TO NEWSLATTER')

@csrf
{{ $ps->phone }} {{ $ps->email }} {{ $ps->street }}
@foreach (DB::table('social_links')->where('user_id', 0)->where('status', 1)->get() as $link) @endforeach
@lang('Product Category')
    @foreach ($categories->take(6) as $cate)
  • {{ $cate->name }}
  • @endforeach
@lang('Customer Care')
    @if ($ps->home == 1)
  • {{ __('Home') }}
  • @endif @if ($ps->blog == 1)
  • {{ __('Blog') }}
  • @endif @if ($ps->faq == 1)
  • {{ __('Faq') }}
  • @endif @foreach (DB::table('pages')->where('footer', '=', 1)->get() as $data)
  • {{ $data->title }}
  • @endforeach @if ($ps->contact == 1)
  • {{ __('Contact Us') }}
  • @endif
@lang('Recent Post')
@php $footer_blogs = App\Models\Blog::where('status', 1)->orderBy('id', 'desc')->take(3)->get(); @endphp @foreach ($footer_blogs as $footer_blog) recent post
{{ mb_strlen($footer_blog->title, 'UTF-8') > 45 ? mb_substr($footer_blog->title, 0, 45, 'UTF-8') . ' ..' : $footer_blog->title }}
{{ date('M d - Y', strtotime($footer_blog->created_at)) }}
@endforeach

{{$gs->copyright}}