Laravel – got syntax error, unexpected end of file on my blade.php
got this error after inserting a @if inside a forelse and got a syntax error. my home.blade.php: @extends('master') @section('header-intro') @endsection @section('main') <div class="container"> <!--Section: Content--> <section class="text-center"> <div class="posts"> @forelse ($posts as $post) @if (auth()->user()->id === $post->user->id) <div class="post"> <div…