@extends('layouts.app') @section('content')
@if(session()->get('success'))
{{ session()->get('success') }}
@endif @if(auth()->user()->hasRole('super_admin', 'admin'))

Statistics

@foreach($statistics as $statistic) @endforeach
ID Name Email Mobile UserName Followers Following Engagement Rate Actions
{{$statistic->id}} {{$statistic->name}} {{$statistic->email}} {{$statistic->mobile}} {{$statistic->profile}} {{$statistic->followers}} {{$statistic->following}} {{$statistic->engagement_rate}}
@endif @include('layouts.footers.auth')
@endsection