@extends('gallery.layouts.app') @section('content')
All @foreach(\App\Category::all() as $category) {{$category->name}} @endforeach
@foreach(\App\Gallery::where('status','Approved')->get() as $gallery)
{{sizeof(Storage::disk('public')->files($gallery->slug))}}
{{$gallery->title}}

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

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