@extends(Theme::viewName('layout')) @section('title', $user->name) @section('breadcrumb') @endsection @section('content')

{{ $user->name }}

@if (!empty($user->profile_alias))

{{ $user->profile_alias }}

@endif
@if (count($albums) == 0)

@lang('gallery.user_profile.no_albums_p1')

@lang('gallery.user_profile.no_albums_p2', ['user_name' => $user->name])

@else

@lang('gallery.user_profile.albums', ['user_name' => $user->name])

@foreach ($albums as $childAlbum) @include(Theme::viewName('partials.gallery_child_album'), ['show_text' => true]) @endforeach
@endif

@lang('gallery.user_profile.activity')

{{-- Nav tabs --}} {{-- Tab panes --}}
{{-- Photos taken --}}

@lang('gallery.user_profile.activity_taken_p1', ['user_name' => $user->name])

@include (Theme::viewName('partials.user_profile_activity_grid'), ['activity' => $activity_taken])
{{-- Photos uploaded --}}

@lang('gallery.user_profile.activity_uploaded_p1', ['user_name' => $user->name])

@include (Theme::viewName('partials.user_profile_activity_grid'), ['activity' => $activity_uploaded])
@if (count($cameras) > 0)

@lang('gallery.user_profile.cameras')

@foreach ($cameras as $camera) @endforeach
@lang('admin.album_camera_make') @lang('admin.album_camera_model') @lang('admin.album_camera_software') @lang('admin.album_camera_photo_count')
{{ $camera->camera_make }} {{ $camera->camera_model }} {{ $camera->camera_software }} {{ $camera->photo_count }}
@endif
@endsection