@extends('layouts.master') @section('content')

{{ __("go.GlobalOperation") }} · {{ __("go.Season") }} {{ $info->GO_SEASON }}

{{ $info->GO_DESCRIPTION }}
@if (Session::has('success'))
{{ Session::get('success') }}
@endif @if (Session::has('error'))
{{ Session::get('error') }}
@endif
@if ($info->GO_START_DATE >= date('Y-m-d H:i:s'))

{{ __("go.CountdownStart") }}

@else

{{ __("go.Season") }} {{ $info->GO_SEASON }} {{ __("go.SeasonStart") }}

@endif @if ($info->GO_ENLIST_SDATE > date('Y-m-d H:i:s'))
{{ __("go.AvailableEnlistment") }}
@else @if (Session::has('isLogged') && Session::get('isLogged'))
@if ((Session::has('goEnlisted') && Session::has('goSide')) && Session::get('goEnlisted') != false)
{{ __("go.TeamChooseWait") }} {!! Session::get('goSide') == 'B' ? "BL" : "GR" !!}
@if (Session::get('goSide') == 'G')
GR
BL
@else
GR
BL
@endif @else @endif
@else
{{ __("go.LoginSeeEvent") }}
{{ __("go.LoginSeeButton") }}
GR
BL
@endif @endif
@endsection