1
0
mirror of https://github.com/exane/not-gwent-online synced 2024-10-31 10:36:53 +00:00
not-gwent-online/site/client/views/inner.blade.php

17 lines
346 B
PHP
Raw Normal View History

2015-06-21 14:34:27 +00:00
@extends('app')
@section('content')
2015-06-21 19:20:17 +00: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 14:34:27 +00:00
@stop