@extends('layouts.front-end.app')
@section('title',\App\CPU\translate('Where To Find Us'))
@push('css_or_js')
@endpush
@section('content')
فروع شانة
@foreach($main_branches as $main_branch)
| العنوان |
الهاتف |
عرض التفاصيل |
@foreach(App\Model\Branch::where('branch_id' , $main_branch->id)->where('type_id' , 'Branch')->orderBy('sort' , 'ASC')->get() as $child_branch)
| {{$child_branch->name}} |
{{$child_branch->contact_number}} |
|
@endforeach
@endforeach
@if(count($franchise_branches) > 0)
وكلاء فرنشايز
@foreach($franchise_branches as $key => $franchise_branch)
| العنوان |
الهاتف |
عرض التفاصيل |
@foreach(App\Model\Branch::where('branch_id' , $franchise_branch->id)->where('type_id' , 'Franchise')->orderBy('sort' , 'ASC')->get() as $child_branch)
| {{$child_branch->name}} |
{{$child_branch->contact_number}} |
|
@endforeach
@endforeach
@endif
@endsection
@push('script')
@endpush