@extends('layouts.superadmin') @section('content')

Restaurants

Restaurant
Name: {{ $restaurant->name ?? '' }}
Domain: {{ $restaurant->domain ? $restaurant->domain . '.eaterli.com' : '' }}
Locations
@php $i = 0; @endphp @foreach ( $restaurant->locations as $restaurant ) @endforeach
# {{ __('Name') }} Branch Type
{{ ++$i }} {{ $restaurant->name }} {{ $restaurant->is_primary ? 'Main Branch' : 'Sub Branch' }}
@endsection @section('script') @endsection