@extends('layouts/master') @section('title') {{ $modpack->name }} - Technic Solder @stop @section('content')

Build Management - {{ $modpack->name }}


Build Management: {{ $modpack->name }}
@if (Session::has('success'))
{{ Session::get('success') }}
@endif
@foreach ($modpack->builds->sortByDesc('id') as $build) @endforeach
# Build Number MC Version Mod Count Rec Latest Published Private Created on Actions
{{ $build->id }} {{ $build->version }} {{ $build->minecraft }} {{ $build->modversions_count }} recommended === $build->version ? " checked" : "" }}> latest === $build->version ? " checked" : "" }}> is_published ? " checked" : "" }}> private ? " checked" : "" }}> {{ $build->created_at }} {!! Html::link('modpack/build/'.$build->id, "Manage",'class="btn btn-xs btn-primary"') !!} {!! Html::link('modpack/build/'.$build->id.'?action=edit', "Edit",'class="btn btn-xs btn-warning"') !!} {!! Html::link('modpack/build/'.$build->id.'?action=delete', "Delete",'class="btn btn-xs btn-danger"') !!}
@endsection @section('bottom') @endsection