@extends('layouts.app') @section('title', config('app.name') . ' - Informasi Merchant') @php $hasLocation = filled($merchant->latitude ?? null) && filled($merchant->longitude ?? null) && is_numeric($merchant->latitude) && is_numeric($merchant->longitude); $latitude = $hasLocation ? (float) $merchant->latitude : null; $longitude = $hasLocation ? (float) $merchant->longitude : null; $photoUrl = !empty($merchant->merchant_photo) ? asset($merchant->merchant_photo) : asset('assets/images/no_image.png'); @endphp @section('content') @if ($hasLocation) @endif
{{ $merchant->merchant_category }} @if (!empty($merchant->merchant_sub_category)) — {{ $merchant->merchant_sub_category }} @endif
@endifKoordinat lokasi belum tersedia untuk merchant ini.