1
0
mirror of https://github.com/cp6/my-idlers.git synced 2024-09-29 19:57:08 +02:00
my-idlers/app/Http/Controllers/NetworkSpeedController.php

25 lines
359 B
PHP
Raw Normal View History

<?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)
{
//
}
}