@extends('admin.layouts.dashboard') @section('title', 'Partner Details') @section('content') @php $partnerName = $partner->company_name ?: $partner->name; @endphp
View complete partner information and map details.
Business Name
{{ $partnerName }}
Business Type
{{ ucfirst($partner->business_type ?: 'other') }}
Contact Person
{{ $partner->contact_person ?: 'N/A' }}
Phone
{{ $partner->phone_number ?: 'N/A' }}
{{ $partner->email }}
Active Offers
{{ $partner->offers_count }}
Address
{{ $partner->business_address ?: 'N/A' }}
Description
{{ $partner->business_description ?: 'N/A' }}
Map Latitude
{{ $partner->map_lat ?? 'N/A' }}
Map Longitude
{{ $partner->map_lng ?? 'N/A' }}
Branch Locations
{{ $location->label ?: 'Branch' }}
@if ($location->is_primary) Primary @endifLogo
@php $logoPath = $location->business_logo ?: $partner->business_logo; @endphp @if ($logoPath)No logo
@endifStore Image
@php $imagePath = $location->business_image ?: $partner->business_image; @endphp @if ($imagePath)No image
@endif{{ $location->address }}
Open MapNo branch locations found.
@endforelse