urlsnail/app/Http/Controllers/BookmarkController.php

79 lines
1.4 KiB
PHP
Raw Normal View History

<?php
namespace App\Http\Controllers;
use App\Models\Bookmark;
use Illuminate\Http\Request;
class BookmarkController extends Controller
{
/**
* Display a listing of the resource.
*/
public function index()
{
2024-05-25 12:47:48 +00:00
return view(
'bookmarks.index', [
'bookmarks' => Bookmark::paginate(20),
]
);
}
/**
* Show the form for creating a new resource.
*/
public function create()
{
//
}
/**
* Store a newly created resource in storage.
*/
public function store(Request $request)
{
//
}
/**
* Display the specified resource.
*/
public function show(string $id)
{
return view(
2024-05-25 12:47:48 +00:00
'bookmarks.show', [
'bookmark' => $bookmark = Bookmark::findOrFail($id),
]
);
}
/**
* Show the form for editing the specified resource.
*/
public function edit(string $id)
{
2024-05-26 12:48:04 +00:00
return view(
'bookmarks.edit', [
'edit' => true,
'bookmark' => $bookmark = Bookmark::findOrFail($id),
]
);
}
/**
* Update the specified resource in storage.
*/
public function update(Request $request, string $id)
{
//
}
/**
* Remove the specified resource from storage.
*/
public function destroy(string $id)
{
//
}
}