{{--
--}}
Welcome to Ayra Fashion World!
{{--
--}}
Contact
Login
/
Register
Home
About
Contact
Terms & Conditions
Cart
{{--
Whole Sale
--}}
Contact
:
@php $contact = App\Models\Contact::first(); @endphp {{ $contact->phone }}
{{--
Wishlist
--}}
{{ count(Cart::content()) }}
Cart
@foreach (Cart::content() as $cartItem) @php $product = App\Models\Admin\Product::find($cartItem->id); $productImage = App\Models\Admin\ProductImage::where( 'product_id', $product->id, )->first(); @endphp
{{ $product->name }}
Size: {{ $cartItem->options['size'] }}
{{ $cartItem->qty }}
{{ $cartItem->price }}
{{--
@php $product = App\Models\Admin\Product::find($cartItem->id); $productImage = App\Models\Admin\ProductImage::where( 'product_id', $product->id, )->first(); @endphp
{{ $product->name }}
{{ $cartItem->qty }}
{{ $cartItem->price }}
{{--
--}}
@endforeach
Subtotal:
{{ cartTotalPrice() }}
View Cart
Checkout
Browse Categories
@php $categories = App\Models\Admin\Category::where('status', 1) ->select('id', 'name') ->get(); @endphp
@foreach ($categories as $category) @php $subcategories = App\Models\Subcategory::where([ 'status' => 1, 'category_id' => $category->id, ])->get(); $subCount = App\Models\Subcategory::where( 'category_id', $category->id, )->count(); @endphp
{{ $category->name }}
@if ($subCount > 0) {{--
--}}
@foreach ($subcategories as $subcategory)
{{ $subcategory->name }}
@endforeach
@endif
@endforeach
All Categories
@foreach ($categories as $category)
{{ $category->name }}
@endforeach
Track Order
{{--
Daily Deals
--}}
@yield('content')
@include('frontend.footer')
{{-- --}}
Main Menu
Categories
Home
About
Contact
Terms & Conditions
Cart
{{--
Whole Sale
--}}
Track Order
@foreach ($categories as $category) @php $subcategories = App\Models\Subcategory::where([ 'status' => 1, 'category_id' => $category->id, ])->get(); $subCount = App\Models\Subcategory::where('category_id', $category->id)->count(); @endphp
{{ $category->name }}
@if ($subCount > 0) {{--
--}}
@foreach ($subcategories as $subcategory)
{{ $subcategory->name }}
@endforeach
@endif
@endforeach
{{-- @include('frontend.global_scripts') --}} @stack('scripts') @include('frontend.global_scripts')