@extends('master.front') @section('title') {{'Location'}} @endsection @section('meta') @endsection @section('content')

pin_drop{{__('ที่ตั้งสาขา')}}

@foreach(@$data as $d)

{{__($d->title)}}


{{__('ที่อยู่')}}

{!! $d->address !!}

{{__('เบอร์โทรศัพท์')}}

@foreach(explode(' ', $d->tel) as $tel) @php $tel_clean = str_replace('-', '', $tel); // ตัดขีดออก @endphp {{ $tel }}
@endforeach

{{__('เบอร์โทรสาร')}}

@foreach(explode(' ', $d->tel2) as $fax) @php $fax_clean = str_replace('-', '', $fax); // ตัดขีดออก @endphp {{ $fax }}
@endforeach

{{__('อีเมล์ฝ่ายขาย')}}

{{__($d->email)}}

@endforeach
@endsection