for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Repositories\Database;
use App\Foundation\Repositories\DbRepository;
use App\Repositories\PersonRepository;
use Illuminate\Support\Collection;
class PersonDbRepository extends DbRepository implements PersonRepository
{
public function getAll() : Collection
return $this->query()
->orderBy('order_column')
->get();
}