@extends('layouts.landing') @section('title', 'Feed') @section('content')
{{-- Crear publicación --}}
@csrf
{{-- Feed --}} @forelse($posts as $post) @include('feed._post', ['post' => $post]) @empty

Aún no hay publicaciones. Agrega amigos para ver su contenido.

Buscar personas
@endforelse
{{ $posts->links() }}
@endsection @section('scripts') @endsection