{{-- ============================================================ resources/views/user/promotions/browse.blade.php ============================================================ --}} @extends('layouts.app') @section('title','Earn by Viewing') @section('content') {{-- Progress bar --}}
Daily View Progress {{ $viewedTodayCount }}/{{ $dailyViewLimit }}
@if(!$canView)
Daily limit reached. Come back tomorrow!
@endif
{{-- Filter tabs --}}
All @foreach($platforms as $key => $p) {{ $p['icon'] }} {{ $p['label'] }} @endforeach
{{-- Promotion Cards --}}
@forelse($promotions as $promo) @php $info = $promo->platform_info; @endphp
{{-- Thumbnail --}} @if($promo->thumbnail) @else
{{ $info['icon'] }}
@endif
{{ $info['icon'] }}
{{ $promo->title }}
{{ $info['label'] }}
+{{ $promo->points_per_view }}
pts/view
@if($promo->description)

{{ Str::limit($promo->description,80) }}

@endif
{{ number_format($promo->total_views) }}
{{ $promo->view_duration_seconds }}s
@if($canView) View & Earn @else @endif
@empty
👀
No promotions yet
Be the first to promote your content!
Promote My Content
@endforelse {{ $promotions->links() }}
@endsection