@extends('customer.layout') @section('content')

{{__('Products')}}

@forelse($products ?? [] as $product) @empty @endforelse
# {{__('Product')}} {{__('Domain')}} {{__('View')}}
{{$product->id}} {{$product->details['title_'.\Config::get('app.locale')]}} {{$product->domain}} View
{{__('You dont have any products yet.')}}
@endsection