App\Repositories\PersonRepository::getAll PHP Method

getAll() public static method

public static getAll ( ) : Collection
return Illuminate\Support\Collection
    public static function getAll() : Collection
    {
        return Person::orderBy('publish_date', 'desc')->get();
    }
PersonRepository