Web_Crawler_API/app/Http/Controllers/WebCrawlController.php

88 lines
1.7 KiB
PHP
Raw Normal View History

2023-05-30 14:29:46 +00:00
<?php
namespace App\Http\Controllers;
use App\Models\WebCrawl;
use Illuminate\Http\Request;
class WebCrawlController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
//Return the results in JSON format
// return response()->json($webCrawl);
}
/**
* Show the form for creating a new resource.
*
* @return \Illuminate\Http\Response
*/
public function create()
{
//
}
/**
* Store a newly created resource in storage.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function store(Request $request)
{
//
}
/**
* Display the specified resource.
*
* @param \App\Models\WebCrawl $webCrawl
* @return \Illuminate\Http\Response
*/
public function show(WebCrawl $webCrawl)
{
//
}
/**
* Show the form for editing the specified resource.
*
* @param \App\Models\WebCrawl $webCrawl
* @return \Illuminate\Http\Response
*/
public function edit(WebCrawl $webCrawl)
{
//
}
/**
* Update the specified resource in storage.
*
* @param \Illuminate\Http\Request $request
* @param \App\Models\WebCrawl $webCrawl
* @return \Illuminate\Http\Response
*/
public function update(Request $request, WebCrawl $webCrawl)
{
//
}
/**
* Remove the specified resource from storage.
*
* @param \App\Models\WebCrawl $webCrawl
* @return \Illuminate\Http\Response
*/
public function destroy(WebCrawl $webCrawl)
{
//
}
}