Skip to content

Instantly share code, notes, and snippets.

@ilyasozkurt
Created February 27, 2023 21:07
Show Gist options
  • Save ilyasozkurt/02caf32564a45f4aa6ce287aa723da27 to your computer and use it in GitHub Desktop.
Save ilyasozkurt/02caf32564a45f4aa6ce287aa723da27 to your computer and use it in GitHub Desktop.
<?php
class Country extends Model
{
public function cities()
{
return $this->hasManyThrough(City::class, State::class);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment