Files
asm-dashboard/app/Http/Controllers/SecuritySummaryController.php
Andrea Pavone 0e18b53f91 Init commit
Signed-off-by: Andrea Pavone <info@andreapavone.com>
2024-11-10 16:10:14 +01:00

53 lines
909 B
PHP

<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Storage;
use Illuminate\Support\Str;
class SecuritySummaryController extends Controller
{
/**
* Display a listing of the resource.
*/
public function index()
{
$data = Storage::json('summary2.0.json');
return response()->json($data);
}
/**
* Store a newly created resource in storage.
*/
public function store(Request $request)
{
//
}
/**
* Display the specified resource.
*/
public function show(string $id)
{
//
}
/**
* Update the specified resource in storage.
*/
public function update(Request $request, string $id)
{
//
}
/**
* Remove the specified resource from storage.
*/
public function destroy(string $id)
{
//
}
}