the browser-facing portion of osu!
at master 23 lines 652 B view raw
1{{-- 2 Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the GNU Affero General Public License v3.0. 3 See the LICENCE file in the repository root for full licence text. 4--}} 5@extends('master', ['titlePrepend' => $groupJson['name']]) 6 7@section('content') 8 <div class="js-react--groups-show"></div> 9@endsection 10 11@section("script") 12 @parent 13 14 <script id="json-group" type="application/json"> 15 {!! json_encode($groupJson) !!} 16 </script> 17 18 <script id="json-users" type="application/json"> 19 {!! json_encode($usersJson) !!} 20 </script> 21 22 @include('layout._react_js', ['src' => 'js/groups-show.js']) 23@endsection