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

Restaurants

{{-- Add Restaurant --}}
@if ($message = Session::get('success'))

{{ $message }}

@endif
@php $i = 0; @endphp @foreach ( $restaurants as $restaurant ) @endforeach
# {{ __('Name') }} {{ __('No Of Locations') }} {{ __('Active Plan') }} {{ __('Action') }}
{{ ++$i }} {{ $restaurant->name }} {{ $restaurant->locations_count ?? '' }} {{ '' }} {{-- --}}
@endsection @section('script') @endsection