@extends('index') @section('content')
{{ $station->title }}

Comments

@include('comments.index', ['object' => (Object) ['id' => $station->id, 'type' => 'App\Models\Station', 'title' => $station->title]])
{!! Advert::get('sidebar') !!}

Related stations

    @include('commons.station', ['stations' => $station->related, 'element' => 'search'])
@endsection