@extends('layouts.main') @section('title', 'Feed') @section('content')
@forelse ($posts as $post)
@if ($loop->first)

Feed

@endif @include('includes.post_card',$post)
@empty @include('without_post', $spaceAll) @endforelse
@if ($posts->lastPage() > $posts->currentPage())
@endif
@endsection @push('scripts') @endpush