@extends('layouts/master') @section('title') Client Management - Technic Solder @stop @section('content')

Client Management


Client List

This is the client management area. Here you can register your launcher client UUID to Solder so that private builds will show up to you in the launcher. After a client is added to this list, they need to be linked to the modpacks you want them to have access to in Solder.

@if (Session::has('success'))
{{ Session::get('success') }}
@endif
@foreach ($clients as $client) @endforeach
# Name Client UUID Actions
{{ $client->id }} {{ $client->name }} {{ $client->uuid }} {!! Html::link('client/delete/'.$client->id, 'Delete', ['class' => 'btn btn-danger btn-xs']) !!}
@endsection @section('bottom') @endsection