@extends('site.layout.master')
@section('content')
@if(count($rows) > 0)
المنتج |
متاح ام لا |
السعر |
الكمية |
الإجمالى |
|
@foreach($rows as $row)
{{$row->title}}
|
@if($row->count >= $row->pivot->count)
متاح
@else
غير متاح
@endif
|
{{$row->price}} |
|
{{$row->pivot->total_price . ' ريال'}} |
|
@endforeach
@else
سلة المنتجات فارغة
@endif
@endsection
@section('script')
@endsection