@extends('layouts.dashboard') @section('content')
@include('notification')
products
@if($exhibitor->products) @foreach ($exhibitor->products as $product) {{$product->name}}, @endforeach @endif
@if($exhibitor->profile && $exhibitor->profile->brandsondisplay) @foreach(unserialize($exhibitor->profile->brandsondisplay) as $brands) {{$brands}}, @endforeach @endif
@if($exhibitor->profile && $exhibitor->profile->brandsondisplay_distributors) @foreach(unserialize($exhibitor->profile->brandsondisplay_distributors) as $brands) {{$brands}}, @endforeach @endif
@endsection