@section('page-title') {{ __('Downloadables') }} @endsection @section('breadcrumbs') @endsection
@if($downloadables->count() > 0) @foreach($downloadables as $item) @endforeach @else @endif
{{ __('ID') }} {{ __('Product') }} {{ __('Version') }} {{ __('Numeric Version') }} {{ __('Summary') }} {{ __('Released') }} {{ __('Created') }} {{ __('Updated') }} {{ __('Published') }} {{ __('Action') }}

{{ $item->id }}

@if(isset($item->product)) #{{ $item->product_id }} {{ $item->product->name }} @else {{ sprintf( __( 'Product Not Found #%d' ), $item->product_id ) }} @endif

{{ $item->version }}

{{ $item->numeric_version }}

{{ $item->update_summary }}

{{ formatDatetime($item->release_date) }} {{ formatDatetime($item->created_at) }} {{ formatDatetime($item->updated_at) }}

@if($item->published) {{ __('On') }} @else {{ __('Off') }} @endif

{{ __('No downloadables found') }}

{{ $downloadables->links() }}
@include('livewire.downloadables.modal-add-item') @include('livewire.downloadables.modal-update-item') @include('common.modal-delete-item', ['name' => 'downloadable']) @include('common.confirm-bulk-action')