@extends('layouts.admin.app') @section('title',translate('messages.landing_page_settings')) @push('css_or_js') @endpush @section('content')

{{ translate('messages.restaurant_platform') }}

@php($restaurant_platform = \App\Models\BusinessSetting::where(['key'=>'restaurant_platform'])->first()) @php($restaurant_platform = isset($restaurant_platform->value)?json_decode($restaurant_platform->value, true):null) @csrf


{{ translate('messages.restaurant_platform_features') }}

@csrf

@php($platform_restaurant_data = \App\Models\BusinessSetting::where(['key'=>'platform_restaurant_data'])->first()) @php($platform_restaurant_data = isset($platform_restaurant_data->value)?json_decode($platform_restaurant_data->value, true):[]) @if($platform_restaurant_data) @foreach ($platform_restaurant_data as $key=>$sp) @endforeach @endif
{{ translate('messages.sl') }} {{translate('messages.Title')}} {{translate('messages.detail')}} {{translate('messages.action')}}
{{$key + 1}} {{$sp['title']}}

{{$sp['detail']}}

@csrf @method('delete')
@if(count($platform_restaurant_data) === 0)
public
{{translate('no_data_found')}}
@endif
@endsection @push('script_2') @endpush