1
0
mirror of https://github.com/exane/not-gwent-online synced 2025-02-24 06:40:31 +00:00

17 lines
346 B
PHP
Raw Normal View History

2015-06-21 16:34:27 +02:00
@extends('app')
@section('content')
2015-06-21 21:20:17 +02:00
<section class="container-inner">
@if($type == 'server')
<component is="lobby" v-transition transition-mode="out-in"></component>
@else
<component is="@{{ view }}" v-transition transition-mode="out-in"></component>
@endif
<component is="chat"></component>
</section>
2015-06-21 16:34:27 +02:00
@stop