You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

127 lines
2.7 KiB

7 years ago
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
7 years ago
use App\Item;
7 years ago
class ItemController extends Controller
{
7 years ago
/**
* Display a listing of the resource on the dashboard.
*
* @return \Illuminate\Http\Response
*/
public function dash()
{
$data['apps'] = Item::all();
return view('welcome', $data);
}
7 years ago
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
7 years ago
$data['apps'] = Item::all();
7 years ago
return view('items.list', $data);
7 years ago
}
/**
* Show the form for creating a new resource.
*
* @return \Illuminate\Http\Response
*/
public function create()
{
//
7 years ago
$data = [];
return view('items.create', $data);
7 years ago
}
/**
* Store a newly created resource in storage.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function store(Request $request)
{
//
7 years ago
$validatedData = $request->validate([
'title' => 'required|max:255',
'url' => 'required',
]);
7 years ago
Item::create($request->all());
7 years ago
7 years ago
return redirect()->route('items.index')
->with('success','Item created successfully');
7 years ago
}
/**
* Display the specified resource.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function show($id)
{
//
}
/**
* Show the form for editing the specified resource.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function edit($id)
{
7 years ago
// Get the item
$item = Item::find($id);
// show the edit form and pass the nerd
return view('items.edit')
->with('item', $item);
7 years ago
}
/**
* Update the specified resource in storage.
*
* @param \Illuminate\Http\Request $request
* @param int $id
* @return \Illuminate\Http\Response
*/
public function update(Request $request, $id)
{
7 years ago
$validatedData = $request->validate([
'title' => 'required|max:255',
'url' => 'required',
]);
Item::find($id)->update($request->all());
return redirect()->route('items.index')
->with('success','Item updated successfully');
7 years ago
}
/**
* Remove the specified resource from storage.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function destroy($id)
{
//
7 years ago
Item::find($id)->delete();
return redirect()->route('items.index')
->with('success','Item deleted successfully');
7 years ago
}
}