@extends('layouts/master') @section('title') Dashboard - Technic Solder @stop @section('content') @if (Session::has('permission'))
{{ Session::get('permission') }}
@endif
@foreach ($builds as $build) @endforeach
# Build # Modpack MC Version # of Mods Updated on Actions
{{ $build->id }} {{ $build->version }} {{ $build->modpack->name }} {{ $build->minecraft }} {{ $build->modversions_count }} {{ $build->updated_at }} {!! Html::link('modpack/build/'.$build->id, 'Manage Build', ['class' => 'btn btn-warning btn-xs']) !!}
@foreach ($modversions as $modversion) @if (!empty($modversion->mod->pretty_name)) @else @endif @endforeach
# Version # Mod Name Author Website Created On Actions
{!! Html::link('mod/view/'.$modversion->mod->id, $modversion->mod->id) !!} {{ $modversion->version }}{!! Html::link('mod/view/'.$modversion->mod->id, $modversion->mod->pretty_name) !!} ({{ $modversion->mod->name }}){!! Html::link('mod/view/'.$modversion->mod->id, $modversion->mod->name) !!}{{ !empty($modversion->mod->author) ? $modversion->mod->author : "N/A" }} {!! !empty($modversion->mod->link) ? Html::link($modversion->mod->link, $modversion->mod->link, ["target" => "_blank"]) : "N/A" !!} {{ $modversion->created_at }} {!! Html::link('mod/view/'.$modversion->mod->id.'#versions','Manage', ["class" => "btn btn-xs btn-primary"]) !!}

Your Solder version is {{SOLDER_VERSION}}

@if (array_key_exists('error',$changelog))
{{ $changelog['error'] }}
@else
    @foreach ($changelog as $change)
  • {!! Html::link($change['html_url'], substr($change['sha'], 0, 7)) !!} {{ $change['commit']['message'] }}
  • @endforeach
@endif

TechnicSolder is an open source project. It is under the MIT license. Source Code: https://github.com/TechnicPack/TechnicSolder

@endsection