@extends('layouts.app') @section('title', 'Influencers') @section('page-title', 'Influencers') @section('page-subtitle', 'Manage your influencer roster') @section('topbar-actions') Add Influencer @endsection @push('styles') @endpush @section('content')
@forelse($influencers as $inf)
@if($inf->profile_image) {{ $inf->influencer_name }} @else
{{ strtoupper(substr($inf->influencer_name, 0, 1)) }}
@endif
{{ $inf->influencer_name }}
{{ $inf->channel_name ?: $inf->platform }}
{{ number_format($inf->followers_count) }}
Followers
{{ number_format($inf->posts_count ?? 0) }}
Videos
Edit
@csrf @method('DELETE')
@empty

No influencers added yet

Add influencers to assign them to campaigns and track their YouTube performance.

Add First Influencer
@endforelse
@endsection