Hi everyone i can't find the error in my function store():
This is the following code:
public function store(Request $request) {
$post= new Post();
$post->title = $request->input('title');
if (Auth::check()) {
$postPhoto = Auth::user()->photo;
$emailpost = Auth::user()->email;
} else {
$postPhoto = public_path('/images/def.jpg');
$emailpost = $request->input('username');
}
$post->photo = $postPhoto;
$post->username = $emailpost;
$post->body = $request->input('body');
$post->save();
return redirect ('/ed');
}
Can anyone help me to find it?
via Chebli Mohamed
Aucun commentaire:
Enregistrer un commentaire