@extends('layout') @section('title', 'Home') @section('content') @if(session('customer_id')) @endif
Banner Image

{{ __('text.Mlevel') }}
{{ __('text.platform') }}

@if(session('customer_id')) @else {{ __('text.signin') }} {{ __('text.sigup') }} @endif

{{ __('text.products') }}

@forelse($data as $index => $d)
Product Image
{{ $d->name }}

{{ __('text.price') }}: @if(session('currency_id')) {{ session('currency_symbol') }} @php $currencyValue = session('value') ?? 1; $totalPrice = $currencyValue * $d->price; @endphp {{ $totalPrice }}

@else {{$symbol}} {{$d->price}}

@endif
@empty
@endforelse

{{ __('text.blog') }}

@foreach($blog as $b) @endforeach
@endsection