@extends('layouts.main') @section('title', '| Sucursales') @section('titlePage', 'Sucursales') @section('content')

{{ __('Branch Office') }} de {{$customer->name}}

@if ($message = Session::get('success'))

{{ $message }}

@endif
@foreach ($branchOffices as $branchOffice) @endforeach
No Nombre {{__('contact_name')}} {{__('contact_phone')}} {{__('mobile_phone')}} {{__('contact_email')}}
{{ ++$i }} {{ $branchOffice->name }} {{ $branchOffice->contact_name }} {{ $branchOffice->contact_phone }} {{ $branchOffice->mobile_phone }} {{ $branchOffice->contact_email }}
@csrf @method('DELETE')
{!! $branchOffices->links('pagination::bootstrap-5') !!}
@endsection