@extends('Layouts.adminLayout') @section('title') {{__('List Product')}} @endsection @section('css') @endsection @section('breadcrumb')
@endsection @section('content')
@php $i=1; @endphp @foreach($data['SellerProduct'] as $value) @if($value->Product != null) @endif @endforeach
{{__('Index')}} {{__('Store Name')}} {{__('Title')}} {{__('Code')}} {{__('Category')}} {{__('Possibilities')}}
{{$i++}} {{$value->seller->store_name}} {{$value->Product->title}} {{$value->Product->code}} {{$value->Product->categorys->title}}
@endsection @section('script') @endsection