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