@extends('gallery.layouts.app') @section('content')

{{$user->name}}

About Me

Name:{{$user->name}}

Location:Accra, Ghana

Photos:{{$user->gallery->count()}}

{!! $user->bio !!}

All @foreach(\App\Category::all() as $category) {{$category->name}} @endforeach
@foreach(\App\Gallery::all() as $gallery)
{{sizeof(Storage::disk('public')->files($gallery->slug))}}
{{$gallery->title}}

{{$gallery->photographer->name}}

@endforeach
@endsection @section('style') @endsection