Method |
Description |
|
__construct ( BlogRepository $blogRepo ) |
|
|
create ( ) : Response |
Show the form for creating a new Blog. |
|
destroy ( integer $id ) : Response |
Remove the specified Blog from storage. |
|
edit ( integer $id ) : Response |
Show the form for editing the specified Blog. |
|
index ( ) : Response |
Display a listing of the Blog. |
|
search ( Illuminate\Http\Request $request ) : Response |
Search. |
|
store ( Illuminate\Http\Request $request ) : Response |
Store a newly created Blog in storage. |
|
update ( integer $id, BlogRequest $request ) : Response |
Update the specified Blog in storage. |
|