@extends('layouts.backend.master') @section('title','Post') @push('css') @endpush @section('content')

ALL FAVORITE POSTS {{ $posts->count() }}

{{----}} {{----}} @foreach($posts as $key=>$post) @endforeach
ID Title Author favoritecomment<visibility Action
ID Title Author favoritecomment<visibility Action
{{ $key + 1 }} {{ str_limit($post->title,'10') }} {{ $post->user->name }} {{ $post->favorite_to_users->count() }} {{ $post->view_count }} visibility
@endsection @push('js') @endpush