Current File : /home/tradevaly/demo.tradevaly.com.bd/resources/views/frontend/restaurant-profile.blade.php
@extends('layouts.frontendOld')
    @section('content') 

	
		
	
	<!--Start Company Area-->
	<div class="recommends-search">
		<div class="container">
			
			
		
		<div class="row">
			
			

			@if( isset($data) && !empty($data) )

				@foreach($data as $value)

						<div class="col-md-12 col-sm-12">
							

							<div class="row product_section">
								<div class="col-md-2 col-sm-6">
									 <a href="{{ !empty( $value->promotional_web_url ) ? $value->promotional_web_url : $value->map_url }}" target="_blank">
									 	<img id="previewImg" src="{{ asset('storage/app/public/restaurants/'.$value->feature_image) }}" width="200" style="padding-top:5px">
									 </a>
								</div>
								<div class="col-md-8 col-sm-6">
									<ul>
										<li>
											<a href="{{ !empty( $value->promotional_web_url ) ? $value->promotional_web_url : $value->map_url }}" target="_blank"><b>{{ $value->name }}</b></a>
										</li>

										<li>
											<i class="fas fa-map-marker-alt"></i> {{ !empty( $value->address ) ? $value->address : '' }}
										</li>

										<li> 
											<b>Mobile: </b>
											{{ !empty( $value->mobile_no ) ? $value->mobile_no : '' }}
										</li>


										<li> 
											<b>Email: </b>
											{{ !empty( $value->email ) ? $value->email : '' }}
										</li>

										


										<li>
											@if( !empty($value->short_summery) )
											
											{!! $value->short_summery !!}

											@else
												Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry. 
											@endif
										</li>		
										
										<li>
											
											<a href="{{$value->map_url}}" target="_blank">
												<img src="{{ asset('public/frontend/images/map.png') }}" alt="Map" width="30" target="_blank">
											</a>


											<a href="{{$value->facebook_url}}" target="_blank">
												<img src="{{ asset('public/frontend/images/fb.png') }}" alt="Facebook" width="20" target="_blank">
											</a>

											<a href="{{$value->website_url}}" target="_blank"{{$value->website_url}}" target="_blank">
												<img src="{{ asset('public/frontend/images/web.png') }}" alt="Website" width="20" target="_blank">
											</a>

											<a href="{{$value->whats_app}}" target="_blank">
												<img src="{{ asset('public/frontend/images/whatsapp.png') }}" alt="whatsApp" width="30" target="_blank">
											</a>

											


											<a href="{{$value->video_url}}" target="_blank">
												<img src="{{ asset('public/frontend/images/youtube.png') }}" alt="Youtube" width="30" target="_blank">
											</a>

											
										</li>

									</ul>
								</div>

								@if( $value->is_verified == 1 )
									<div class="col-md-2 col-sm-6">
										<ul>
											<li>
												<img src="{{ asset('public/frontend/images/qr_code.png') }}" alt="Qr Code" width="70" target="_blank">
											</li>
										</ul>
									</div>
								@endif

							</div>

							

						</div>

				@endforeach

			@endif
			@if( !empty($value->map_url) )
					<iframe width="100%" 
			        height="380" 
			        frameborder="0" 
			        scrolling="no" 
			        marginheight="0" 
			        marginwidth="0"
			        src="{{$value->map_url}}" width="100%" height="225" style="border:0;" allowfullscreen="" loading="lazy"></iframe>
			@endif
			</div>
		</div>

	</div><!--End Company Area-->
	
	
	<br/>

@endsection