@if(isset($product_profile_info))
@forelse($product_profile_info as $product_profile) @empty @endforelse
{{trans('label.SL')}} {{trans('label.product Id')}} {{trans('label.Name')}} {{trans('label.Category')}} {{trans('label.Unit')}} {{trans('label.Manufactured Company')}} {{trans('label.status')}} {{trans('label.action')}}
{{$loop->iteration}} {{$product_profile->id}} {{$product_profile->name}} @if($categories) @foreach($categories as $category) @if($category->category_id ==$product_profile->Product_category_id ) {{ $category->name }} @endif @endforeach @endif @if($measurments) @foreach($measurments as $measurment) @if($measurment->id ==$product_profile->mesurement_id ) {{ $measurment->name }} @endif @endforeach @endif {{$product_profile->manufacturedCompany}} {{$product_profile->status}} Edit {{ Form::open(array('url' => 'product-profile/'.$product_profile->product_id, 'class' => '')) }} {{ Form::hidden('_method', 'DELETE') }} {{ Form::submit('Delete', array('class' => 'btn btn-danger btn-sm')) }} {{ Form::close() }}
@endif