{{-- Pterodactyl - Panel --}} {{-- Copyright (c) 2015 - 2017 Dane Everitt --}} {{-- This software is licensed under the terms of the MIT license. --}} {{-- https://opensource.org/licenses/MIT --}} @extends('layouts.admin') @section('title') List Packs @endsection @section('content-header')

PacksAll service packs available on the system.

@endsection @section('content')

Pack List

@foreach ($packs as $pack) @endforeach
ID Pack Name Version Description Option Servers
{{ $pack->id }} {{ $pack->name }} {{ $pack->version }} {{ str_limit($pack->description, 150) }} {{ $pack->option->name }} {{ $pack->servers_count }}
@if ($packs->hasPages()) @endif
@endsection