@extends('layouts.app') @section('title', $communaute->name) @section('content')
@include('communauty.nav')
{!! Form::open([ 'url' => route('post.communaute', $communaute), 'method' => 'post', 'enctype' => 'multipart/form-data' ] ) !!}
{!! Form::hidden('user_id', Auth::id(), []) !!} {!! Form::hidden('communauty_id', $communaute->id, []) !!}
{!! Form::close() !!}
@forelse($posts as $post)
{{ $post->contenu }}
@if($post->photo)
Card image cap
@endif
Avatar
@empty

Soyez le premier à publier dans cette communauté !

@endforelse @if($posts)
{{ $posts->links() }}
@endif
@include('communauty.details') {{-- Informations de la communauté --}}
@endsection @section('script') @endsection