Beispiel #1
0
 public function restore(Request $request)
 {
     Page::withTrashed()->where('id', $request->id)->restore();
     $page = Page::find($request->id);
     $message = "<div class='alert alert-success' role='alert'>\n                        <span class='fa fa-fw fa-thumbs-o-up'></span> <strong>" . ucfirst($page->name_nl) . "</strong> werd met succes terug toegevoegd aan het aanbod van!\n                    </div>";
     Session::flash('messages', $message);
     return redirect('/admin/dashboard/pages');
 }