mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-17 17:01:37 +00:00
15 lines
254 B
PHP
Executable File
15 lines
254 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Actions\Site;
|
|
|
|
use App\Models\Server;
|
|
use Illuminate\Database\Eloquent\Collection;
|
|
|
|
class GetSites
|
|
{
|
|
public function handle(Server $server): Collection
|
|
{
|
|
return $server->sites()->orderBy('id', 'desc')->get();
|
|
}
|
|
}
|