@extends('layouts.home')
@section('title', 'Dashboard')
@section('content')
@if(Auth::user()->hasAnyRole(['consumer','agent']) )
@include('partials.transaction-status')
@endif
Empfehlen
@can('show seller')
@endcan
@can('show agent coupons')
@endcan
{{-- Temporär ausblenden, #20587
@include('dashboard.partials.filter', array_merge(['url' => url('/dashboard/agent')],
compact('sellerAccountFilter', 'consumerAccountFilter', 'couponTemplateFilter'))
)
--}}
TOP 5 Unternehmen
@foreach($topFiveSellers as $seller)
-
@include('partials.account', ['account' => $seller, 'long' => true])
{{ Format::currency($seller->provision) }}
@endforeach
TOP 5 RECO.BONS
@foreach($templatesWithConversionRate as $template)
-
@include('partials.account', ['account' => $template->seller->account])
| {{ $template->title }}
{{ Format::percent($template->conversionRate) }}
@endforeach
@endsection
@section('after-scripts')
@endsection