@extends('layouts.admin.app')
@section('page-title')
{{ __('Branches') }}
@endSection
@section('page-nav-title')
{{ __('Branches') }}
{{ __('All Branches') }}
@endsection
@section('content')
@include('includes.dialog')
| {{ __('ID') }} |
{{ __('Image') }} |
{{ __('Phone Number') }} |
{{ __('Address') }} |
{{ __('Control') }} |
@foreach ($branches as $branch)
| {{ $branch->id }} |
@if ($branch->getFirstMediaFile())
@endif
|
{{ $branch->phone_number }} |
|
|
@endforeach
@endsection
@section('scripts')
@endsection