3 namespace Oxbow\Http\Controllers;
5 use Illuminate\Http\Request;
7 use Oxbow\Http\Requests;
8 use Oxbow\Http\Controllers\Controller;
10 class PageController extends Controller
13 * Display a listing of the resource.
17 public function index()
23 * Show the form for creating a new resource.
27 public function create()
33 * Store a newly created resource in storage.
35 * @param Request $request
38 public function store(Request $request)
44 * Display the specified resource.
49 public function show($id)
55 * Show the form for editing the specified resource.
60 public function edit($id)
66 * Update the specified resource in storage.
68 * @param Request $request
72 public function update(Request $request, $id)
78 * Remove the specified resource from storage.
83 public function destroy($id)