@extends('backend.layouts.app') @section('title', 'Photo List') @section('content')
| # | Image | Description | Gallery | Sort | Actions |
|---|---|---|---|---|---|
| @if(count($photos) > 1) @else @endif {{ ($photos->currentPage() - 1) * $photos->perPage() + $loop->iteration }} |
@if($photo->photo_url)
|
{{ Str::limit($photo->photo_descr, 40) ?? '-' }} | @php $g = $photo->gallery; @endphp {{ $g->translations->firstWhere('gallery_translation_main', 1)?->gallery_translation_title ?? $g->translations->first()?->gallery_translation_title ?? 'Gallery #' . ($g->gallery_id ?? '?') }} | {{ $photo->photo_sort ?? '-' }} | |
No photos foundClick "Add Photo" to upload your first photo. |
|||||