Hey @janmoes
I'm not sure what experience you currently have with Laravel but this is quite easily achievable.
The link i suggested was to get you started, whilst it may be "simple", it would be the foundation of what you're looking to do.
You could filter what content you would like shown on that particular page in a query on a status basis. (i.e if the status = displayed).... see controller for more info...
In your controllers you could then add various queries as required to call data & pass it to the view. For instance if you had all of your posts in a table you could call this in the controller as such:-
//DashboardController
use App\Post; // This is your model
public function show()
{
$posts = Post::where('status', 'displayed')->get();
return view('your_page_name', compact('posts'));
}
Then in your view you could do something like:-
<h5>These are our recent posts</h5>
<div class="row">
@foreach ($posts as post)
<div class="col-md-12">
<h5>{{$post->title}}</h5>
<p>{{$post->content}}</p>
</div>
@endforeach
</div>
This would return all of the posts thats status = displayed.