mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-21 10:51:36 +00:00
18 lines
335 B
PHP
Executable File
18 lines
335 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Actions\Script;
|
|
|
|
use App\Models\User;
|
|
use Illuminate\Contracts\Pagination\LengthAwarePaginator;
|
|
|
|
class GetScripts
|
|
{
|
|
public function handle(User $user): LengthAwarePaginator
|
|
{
|
|
return $user->scripts()
|
|
->orderBy('id', 'desc')
|
|
->paginate(6)
|
|
->onEachSide(1);
|
|
}
|
|
}
|