@extends('website.laundry.layouts.index') @section('content') @if ($advertisement_locations->isNotEmpty()) @foreach ($advertisement_locations as $location) $location->advertisement->url]) href="{{ $location->advertisement->url ?? 'javascript:void(0)' }}" @if($location->advertisement->url) target="_blank" @endif ar-image="{{ uploads($location->advertisement->getTranslation('image','ar')) }}" en-image="{{ uploads($location->advertisement->getTranslation('image','en')) }}" data-id="{{$location->id}}"> @endforeach @endif @if ($room) {{ $room->title }} @endif @foreach ($laundry->sections as $section) {{ $section->title }} @endforeach @foreach ($laundry->sections as $section) {{ $section->title }} @foreach ($section->clothes as $cloth) @if (in_array(strtolower(pathinfo($cloth->media, PATHINFO_EXTENSION)),['gif','jpg','jpeg','png','jfif','webp'])) @else @endif {{ $cloth->title }} @if ($cloth->tag_id) {{ $cloth->tag->title }} @endif {!! $cloth->description ?: __('global.no_description') !!} @if ($cloth->price == 0) @elseif ($cloth->offer) {{ $cloth->price }} {{ $cloth->offer_price }} SAR @else {{ $cloth->offer_price }} SAR @endif @if (!$order || ($order && in_array($order->status->title,$laundry->settings->orders->enable_adding_cloth_on_status))) @if ($laundry->settings->orders->is_active) @else @endif @endif @endforeach @endforeach @lang('global.add_from_menu_options')
00:59