First commit

This commit is contained in:
dyzulk
2025-12-30 12:11:01 +07:00
commit f68f34980a
150 changed files with 22717 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class ServiceController extends Controller
{
public function index()
{
return response()->json([
[
'id' => 1,
'name' => 'SSL Certificate - Standard',
'status' => 'Active',
'expiry' => '2026-12-23',
'domain' => 'example.com'
],
[
'id' => 2,
'name' => 'Code Signing - Pro',
'status' => 'Pending',
'expiry' => 'N/A',
'domain' => 'N/A'
],
[
'id' => 3,
'name' => 'Wildcard SSL',
'status' => 'Expired',
'expiry' => '2025-01-10',
'domain' => '*.web.dev'
]
]);
}
}