コード例 #1
0
ファイル: HomeController.php プロジェクト: selimppc/ecies
 public function home_recent_work_view($id)
 {
     $pageTitle = "Excellence in the training & consultancy services in UK ";
     $data = RecentWork::where('id', $id)->first();
     return View::make('pages.show_recent_work', compact('pageTitle', 'data'));
 }
コード例 #2
0
ファイル: AdminController.php プロジェクト: selimppc/ecies
 public function destroy_recent_work($id)
 {
     $model = RecentWork::find($id);
     $model->delete();
     Session::flash('message', 'Successfully deleted!');
     return Redirect::back();
 }