@extends('layouts/contentNavbarLayout') @section('title', 'Tables - Basic Tables') @section('content')

Clicks By Coupon

@if(count($clicks)>0) @foreach ($clicks as $d) @endforeach @else {{ "No hay nada" }} @endif
@sortablelink('created_at', 'Clicked') @sortablelink('ip', 'Ip') @sortablelink('title', 'Title') Image @sortablelink('typeValue', 'Type')
{{$d->created}} {{$d->ip}} {{$d->title}}
  • Avatar
{{$d->typeValue}}
{!! $clicks->appends(request()->query())->render() !!}
@endsection