@extends('layouts.public') @section('title', 'لیست نمایندگان - asrit.ir') @section('content')

لیست نمایندگان فروش و خدمات

@if($representativesByCity->isEmpty())

در حال حاضر نماینده‌ای ثبت نشده است.

@else @foreach($representativesByCity as $city => $representatives)

{{ $city }}

@foreach($representatives as $rep)
{{ $rep->full_name }}

آدرس: {{ $rep->address }}

تلفن: {{ $rep->phone }}

@if($rep->email)

ایمیل: {{ $rep->email }}

@endif
@endforeach
@endforeach @endif
@endsection