@extends('voyager::master')
@section('page_title', 'Cover Photo')
@section('page_header')
@stop
@section('content')
@include('_partials.alerts')
{{ __('datatable.sn') }} |
{{ __('datatable.organization_id') }} |
{{ __('datatable.cover.image_name') }} |
{{ __('form.type_image') }} |
{{ __('voyager::generic.actions') }} |
@if (isset($coverphoto))
@if (count($coverphoto) > 0)
@foreach ($coverphoto as $index => $cover)
{{ $index + 1 }} |
{{ checkAndReturnValue($cover, 'organizationId') }} |
{{ checkAndReturnValue($cover, 'imagename') }} |
 }}) |
{{ __('voyager::generic.view') }}
{{ __('voyager::generic.edit') }}
{{ __('voyager::generic.delete') }}
|
@endforeach
@else
{{__('messages.no_records_found')}}
|
@endif
@else
{{ __('messages.error_message') }} |
@endif
@stop