Open file: resources\views\restaurantowner\dashboard.blade.php and add this after line 28
https://pastebin.com/8F7Grshy
<div class="content" style="padding-top: 1.875rem!important;">
<div class="card" style="margin-bottom: 0rem;">
<div class="card-body">
<div class="table-responsive">
<table class="table">
<thead>
<tr>
<th>Store Name</th>
<th>Status</th>
</tr>
</thead>
<tbody>
@foreach ($restaurants as $restaurant)
<tr>
<td>{{ $restaurant->name }}</td>
<td>
@if($restaurant->is_active)
<span class="badge badge-success text-white text-capitalize">Open</span>
@else
<span class="badge badge-danger text-white text-capitalize">Close</span>
@endif
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</div>
</div>
Open file: app\Http\Controllers\RestaurantOwnerController.php and add this after line 118
'restaurants' => $restaurants,
And save it you are good to go.