Out of the box, Runway doesn't come with multisite support as Runway doesn't assume anything about how your models are created.
However, there is an easy way to scope the model results you get to only those related to the currently selected site.
Add a column to your model that'll contain a site handle.
Once created, add the following scope to your model. Be sure to change site
to the handle of the column you just created.
// app/Models/Post.phpuse Statamic\Facades\Site;public function scopeRunwayListing($query){$query->where('site', Site::selected()->handle());}
// app/Models/Post.phpuse Statamic\Facades\Site;public function scopeRunwayListing($query){$query->where('site', Site::selected()->handle());}
Sorry, Runway doesn't support creating localisations of models as we've built Runway to be as unopinionated as possible, which introducing this feature would go against.