@extends('backend.index') @section('content')
Add new station
{!! makeDropDown([0 => 'Every where', 1 => 'Title', 2 => 'Description'], 'location', request()->input('location') ? request()->input('location') : 0) !!}
From
Until
From
Until
{!! makeCountryDropDown('country', 'form-control select2-active filter-country-select', request()->input('country')) !!}
@if(request()->input('country')) {!! makeCityDropDown(request()->input('country'), 'city', 'form-control select2-active', request()->input('city')) !!} @endif
Results/Page
@if(request()->input('country') || request()->input('language')) {!! makeCountryLanguageDropDown(request()->input('country'), 'language', 'form-control select2-active', request()->input('language')) !!} @endif
Options
input('comment_disabled')) checked @endif>
input('hidden')) checked @endif>
Clear Filter
@include('backend.commons.station', ['stations' => $stations])
Name Radio Category Description Failed Plays Action
{{ $stations->appends(request()->input())->links() }}
@endsection