@extends('layouts.backend.app') @section('title','Dashboard') @push('css') @endpush @section('content')

DASHBOARD

playlist_add_check
TOTAL POSTS
favorite
TOTAL FAVORITE
library_books
PENDING POSTS
person_add
TOTAL VIEWS

TOP 5 POPULAR POSTS

@foreach($popular_posts as $key=>$post) @endforeach
Rank List Title Views Favorite Comments Status
{{ $key + 1 }} {{ str_limit($post->title,30) }} {{ $post->view_count }} {{ $post->favorite_to_users_count }} {{ $post->comments_count }} @if($post->status == true) Published @else Pending @endif
@endsection @push('js') @endpush