@extends('foodapp.layout.master') @section('title') @endsection @section('content')
@if(!$allproduct->isEmpty()) @foreach($allproduct as $pro)
@csrf Pizza

{{ $pro->name }}

{{ $pro->price }} PKR

@if(!empty($rat))
({{ round($pro->rating,0) }})
@for($i=1; $i<=$rat; $i++) @endfor
@endif
@endforeach @else

No product added!!

@endif
@csrf
@endsection