03.12.2015 Views

laravel4cookbook

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

API 127<br />

17 * @return Response<br />

18 */<br />

19 public function create()<br />

20 {<br />

21 return View::make('events.create');<br />

22 }<br />

23<br />

24 /**<br />

25 * Store a newly created resource in storage.<br />

26 *<br />

27 * @return Response<br />

28 */<br />

29 public function store()<br />

30 {<br />

31 //<br />

32 }<br />

33<br />

34 /**<br />

35 * Display the specified resource.<br />

36 *<br />

37 * @param int $id<br />

38 * @return Response<br />

39 */<br />

40 public function show($id)<br />

41 {<br />

42 return View::make('events.show');<br />

43 }<br />

44<br />

45 /**<br />

46 * Show the form for editing the specified resource.<br />

47 *<br />

48 * @param int $id<br />

49 * @return Response<br />

50 */<br />

51 public function edit($id)<br />

52 {<br />

53 return View::make('events.edit');<br />

54 }<br />

55<br />

56 /**<br />

57 * Update the specified resource in storage.<br />

58 *

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!