@extends('layouts.main_dashboard.app')
@section('title', __('dashboard.Activity Gallery'))
@section('page_heading', __('dashboard.Activity Gallery'))
@section('breadcrumb')
@forelse($galleries as $gallery)
{{ $gallery->title }}
{{ $gallery->media->count() }} {{ __('dashboard.Files') }}
@if(!$gallery->is_published)
{{ __('dashboard.Unpublished') }}
@endif
@empty
{{ __('dashboard.No albums found.') }}
@endforelse
{{ $galleries->links() }}
@endsection