@extends('layouts.app') @section('content')

{{ __('Module "' . $module->name . '" Bundles') }}

{{ __('Add new bundle') }}
@csrf
@if ($errors->has('format')) {{ $errors->first('format') }} @else
{{ __('The format is required.') }}
@endif
@if ($errors->has('platform')) {{ $errors->first('platform') }} @else
{{ __('The platform is required.') }}
@endif
@if ($errors->has('version')) {{ $errors->first('version') }} @else
{{ __('The version is required.') }}
@endif
{{ __('Format:') }} bundle
@if ($errors->has('bundle')) {{ $errors->first('bundle') }} @else
{{ __('The bundle is required.') }}
@endif
@foreach($content as $bundle) @endforeach
{{ __('Format') }} {{ __('Platform') }} {{ __('Hash') }} {{ __('Size') }} {{ __('Version') }} {{ __('Date updated') }} {{ __('Published') }} {{ __('Actions') }}
{{ $bundle->format }} {{ $bundle->platform }} {{ $bundle->hash }} {{ $bundle->size }} {{ $bundle->version->version }} {{ $bundle->updated_at }} status == 0 ? '' : ' checked' }}> @if (AuthHelper::is_admin() && $module->type !== 'videos') @endif
@endsection