@foreach ($records as $key => $record)
@lang('downloadCenter.sl') |
@lang('downloadCenter.title') |
@lang('downloadCenter.send_to') |
@lang('downloadCenter.share_date') |
@lang('downloadCenter.valid_upto') |
@lang('downloadCenter.shared_by') |
@lang('downloadCenter.description') |
@lang('common.action') |
@foreach ($sharedContents as $key => $sharedContent)
@php
$send_type = '';
if ($sharedContent->send_type == 'G') {
$send_type = 'Group';
} elseif ($sharedContent->send_type == 'I') {
$send_type = 'Individual';
} elseif ($sharedContent->send_type == 'C') {
$send_type = 'Class';
} else {
$send_type = 'Public';
}
@endphp
{{ $key + 1 }} |
{{ $sharedContent->title }} |
{{ $send_type }} |
{{ $sharedContent->share_date }} |
{{ $sharedContent->valid_upto }} |
{{ $sharedContent->user->full_name }} |
{{ $sharedContent->description ? $sharedContent->description : 'No Description' }}
|
@if ($sharedContent->url)
@lang('downloadCenter.link')
@endif
@lang('common.view')
|
{{-- Start Delete Modal --}}
{{-- End Delete Modal --}}
@endforeach
@endforeach