{{-- Copyright (c) 2015 - 2017 Dane Everitt --}} {{-- Permission is hereby granted, free of charge, to any person obtaining a copy --}} {{-- of this software and associated documentation files (the "Software"), to deal --}} {{-- in the Software without restriction, including without limitation the rights --}} {{-- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell --}} {{-- copies of the Software, and to permit persons to whom the Software is --}} {{-- furnished to do so, subject to the following conditions: --}} {{-- The above copyright notice and this permission notice shall be included in all --}} {{-- copies or substantial portions of the Software. --}} {{-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR --}} {{-- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, --}} {{-- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE --}} {{-- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER --}} {{-- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, --}} {{-- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE --}} {{-- SOFTWARE. --}} @extends('layouts.admin') @section('title') Add New Service Pack @endsection @section('content')

Manage Service Pack


The name of the pack which will be seen in dropdown menus and to users.

The version of the program included in this pack.

Provide a description of the pack which will be shown to users.


Package Archive
@if(count($files) > 1)
Warning! Service packs should only contain a single pack archive in .tar.gz format. We've detected more than one file for this pack.
@endif @foreach($files as &$file) @endforeach
Filename File Size SHA1 Hash Last Modified
{{ basename($file) }} {{ Storage::size($file) }} Bytes {{ sha1_file(storage_path('app/' . $file)) }} {{ Carbon::createFromTimestamp(Storage::lastModified($file))->toDateTimeString() }}

If you wish to modify or upload a new file it should be uploaded to {{ storage_path('app/packs/' . $pack->uuid) }} as archive.tar.gz.


{!! csrf_field() !!}
{!! Theme::js('js/vendor/ace/ace.js') !!} {!! Theme::js('js/vendor/ace/ext-modelist.js') !!} @endsection