@extends('layouts.app') @section('title') {{ __('messages.Restaurants') }} @endsection @section('style') @endsection @section('content')
@include('inc.breadcrumb', [ 'breadcrumb_items' => [ __('messages.Home') => route('home'), __('messages.Restaurants') => route("admin.restaurants.show" , $user->id), $user->restaurant_info?->name ?? $user->name => null, __('messages.Notifications') => 'active', ], ])
{{ __('messages.Notification data') }}
@csrf
@endsection @section('script') @include('inc.script_submit') @endsection