@extends('app') @section('content')
@foreach($products as $product) @endforeach
Product Name Product Cost Product Price Product Status Product Size Product Color Other Hashtag Operation
{{$product->name}} {{$product->cost}} {{$product->price}} {{$product->status}} {{$product->size}} {{$product->color}} {{$product->other}} @foreach($hashtags as $hashtag) @foreach($tags as $tag) @if($tag->id == $hashtag->tags_id && $product->id == $hashtag->products_id ) {{$tag ->tag}} | @endif @endforeach @endforeach
                 
@endsection @section('script') @endsection