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

Modpack Management


Modpack List
@if (Session::has('success'))
{{ Session::get('success') }}
@endif @if ($errors->all())
@foreach ($errors->all() as $error) {{ $error }}
@endforeach
@endif
@foreach ($modpacks as $modpack) @endforeach
Name Slug Rec Latest Hidden Private Actions
{{ $modpack->name }} {{ $modpack->slug }} {{ !empty($modpack->recommended) ? $modpack->recommended : "N/A" }} {{ !empty($modpack->latest) ? $modpack->latest : "N/A" }} {{ $modpack->hidden == 1 ? "Yes" : "No" }} {{ $modpack->private == 1 ? "Yes" : "No" }} {!! Html::link('modpack/view/'.$modpack->id, 'Manage Builds', ['class' => 'btn btn-warning btn-xs']) !!} {!! Html::link('modpack/edit/'.$modpack->id, 'Edit', ['class' => 'btn btn-primary btn-xs']) !!} {!! Html::link('modpack/delete/'.$modpack->id, 'Delete', ['class' => 'btn btn-danger btn-xs']) !!}
@endsection @section('bottom') @endsection