@extends('layouts.admin') @section('content')
@include('includes.form-error') @include('includes.form-success')
@foreach($productss as $productt) @foreach($productt as $prod) @break @endforeach @endforeach
{{ __('Name') }} {{ __('Category') }} {{ __('Type') }} {{ __('Clicks') }}
{{mb_strlen($prod->product->name,'utf-8') > 60 ? mb_substr($prod->product->name,0,60,'utf-8').'...' : $prod->product->name}} {{$prod->product->category->name}} {{$prod->product->type}} {{$productt->count('product_id')}}
@endsection @section('scripts') @endsection