Im deleting a file instance in DB and file in storage and then redirect to index page, but I dont see changes until I refresh the page. Can you please help me, how to solve it? Thank you 🙂
public function destroy(Food $food)
{
$food->delete();
Storage::delete('public/images/' . $food->name . '.jpeg');
return Redirect::route('index');
}
I tried Google. I expected to find a solution 🙂