@extends('layouts.admin') @section('title', 'Surveys') @section('page-title', 'Manage Surveys') @section('content')

Total: {{ $surveys->total() }} surveys

Add Survey
@forelse($surveys as $s) @empty @endforelse
Title Reward Completions Type Status Actions

{{ mb_strlen($s->title) > 50 ? mb_substr($s->title, 0, 50) . '...' : $s->title }}

@if($s->estimated_minutes)

~{{ $s->estimated_minutes }} min

@endif
${{ number_format($s->reward, 2) }} {{ $s->completions_count }} {{ $s->requires_plan ? 'Premium' : 'Free' }} {{ $s->is_active ? 'Active' : 'Inactive' }} Edit
@csrf @method('DELETE')
No surveys yet.
{{ $surveys->links() }}
@endsection