@extends("restaurants.layouts.restaurants_layout") @section("restaurant_content")

{{$selected_language->data['store_panel_product_sorting'] ?? 'Product Sorting'}}

@foreach($categories as $item) @endforeach
@csrf
@foreach($data as $product)
avatar
{{ucfirst($product->name)}} (@include('layouts.render.currency',["amount"=>$product->price]))

{{$product->is_active == 1 ? $selected_language->data['store_panel_common_active'] ?? 'Active' : $selected_language->data['store_panel_common_inactive'] ?? 'In Active'}}

id}} />
@endforeach
@endsection