@extends('layouts/master') @section('title') Update Checker - Technic Solder @stop @section('content')
Solder Versioning



Update Check
@if (Cache::get('update'))

Solder is out of date. Please refer to the wiki on how to update.

@else

Solder is up to date

@endif

Activity Panel

@if (array_key_exists('error', $changelog))
{{ $changelog['error'] }}
@else @foreach ($changelog as $change) {{ date_format(date_create($change['commit']['author']['date']), 'M, d Y - g:i a') }} {{ $change['author']['login'] ?? $change['commit']['author']['name'] ?? $change['committer']['login'] }} {{ $change['commit']['message'] }} @endforeach @endif
@endsection @section('bottom') @endsection