@extends('layouts.app') @section('content') @lang('crud.studenten_info_sites.index_title')
@can('create', App\Models\Site::class) @lang('crud.common.create') @endcan
@forelse($sites as $site) @empty @endforelse
@lang('crud.studenten_info_sites.inputs.name') @lang('crud.studenten_info_sites.inputs.year') @lang('crud.studenten_info_sites.inputs.path_nl') @lang('crud.studenten_info_sites.inputs.path_en') @lang('crud.common.actions')
{{ $site->name ?? '-' }} {{ $site->year ?? '-' }} @if($site->path_nl) Download @else - @endif @if($site->path_en) Download @else - @endif
@can('update', $site) @endcan @can('view', $site) @endcan @can('delete', $site)
@csrf @method('DELETE')
@endcan
@lang('crud.common.no_items_found')
{!! $sites->render() !!}
@endsection