16 lines
276 B
PHP
16 lines
276 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Repositories;
|
||
|
|
|
||
|
|
use App\Models\Scenario;
|
||
|
|
use Illuminate\Support\Collection;
|
||
|
|
|
||
|
|
class ScenarioRepository
|
||
|
|
{
|
||
|
|
public function getAll(): Collection
|
||
|
|
{
|
||
|
|
return Scenario::query()
|
||
|
|
->orderBy('created_at', 'desc')
|
||
|
|
->get();
|
||
|
|
}
|
||
|
|
}
|