mirror of
https://github.com/cp6/my-idlers.git
synced 2024-11-17 07:52:40 +01:00
a314ac99ef
Initial v2 commit Laravel project
25 lines
359 B
PHP
25 lines
359 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Models\NetworkSpeed;
|
|
use Illuminate\Http\Request;
|
|
|
|
class NetworkSpeedController extends Controller
|
|
{
|
|
public function index()
|
|
{
|
|
//
|
|
}
|
|
|
|
public function show(NetworkSpeed $networkSpeed)
|
|
{
|
|
//
|
|
}
|
|
|
|
public function destroy(NetworkSpeed $networkSpeed)
|
|
{
|
|
//
|
|
}
|
|
}
|