mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-21 19:01:37 +00:00
15 lines
230 B
PHP
Executable File
15 lines
230 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Actions\Server;
|
|
|
|
use App\Models\Server;
|
|
use Illuminate\Database\Eloquent\Collection;
|
|
|
|
class GetServers
|
|
{
|
|
public function handle(): Collection
|
|
{
|
|
return Server::query()->latest()->get();
|
|
}
|
|
}
|