| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <?php
- namespace App\Http\Controllers;
- use App\Models\MessageComment;
- use App\Http\Requests\StoreMessageCommentRequest;
- use App\Http\Requests\UpdateMessageCommentRequest;
- class MessageCommentController extends Controller
- {
- /**
- * Display a listing of the resource.
- *
- * @return \Illuminate\Http\Response
- */
- public function index()
- {
- //
- }
- /**
- * Show the form for creating a new resource.
- *
- * @return \Illuminate\Http\Response
- */
- public function create()
- {
- //
- }
- /**
- * Store a newly created resource in storage.
- *
- * @param \App\Http\Requests\StoreMessageCommentRequest $request
- * @return \Illuminate\Http\Response
- */
- public function store(StoreMessageCommentRequest $request)
- {
- //
- }
- /**
- * Display the specified resource.
- *
- * @param \App\Models\MessageComment $messageComment
- * @return \Illuminate\Http\Response
- */
- public function show(MessageComment $messageComment)
- {
- //
- }
- /**
- * Show the form for editing the specified resource.
- *
- * @param \App\Models\MessageComment $messageComment
- * @return \Illuminate\Http\Response
- */
- public function edit(MessageComment $messageComment)
- {
- //
- }
- /**
- * Update the specified resource in storage.
- *
- * @param \App\Http\Requests\UpdateMessageCommentRequest $request
- * @param \App\Models\MessageComment $messageComment
- * @return \Illuminate\Http\Response
- */
- public function update(UpdateMessageCommentRequest $request, MessageComment $messageComment)
- {
- //
- }
- /**
- * Remove the specified resource from storage.
- *
- * @param \App\Models\MessageComment $messageComment
- * @return \Illuminate\Http\Response
- */
- public function destroy(MessageComment $messageComment)
- {
- //
- }
- }
|