Answer the question
In order to leave comments, you need to log in
How to get the status of a database entry in Laravel 5?
A couple of days ago I started learning Laravel 5 and ran into such a nuisance. For example, I create a database entry like this:
$post = new Post;
$post->title = $title;
$post->teaser = $teaser;
$post->body = $body;
$post->slug = $slug;
$post->image270 = $image270;
$post->enabled = 1;
$post->save();
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question