@extends('frontend.layout') @section('title','Posts') @push('css') @endpush @section('content') @forelse($posts as $post) {{ $post->title }} @guest {{ $post->favorite_to_users->count() }} @else {{ $post->favorite_to_users->count() }} @csrf @endguest {{ $post->comments->count() }} {{ $post->view_count }} @empty No Post Found :( @endforelse {{ $posts->links() }} @endsection @push('js') @endpush