@extends('layouts.main_page_app') @section('content')

@foreach($album->Photos as $photo)
{{$album->name}}

{{$photo->description}}

Created date: {{ date("d F Y",strtotime($photo->created_at)) }}at {{ date("g:ha",strtotime($photo->created_at)) }}

Move image to another Album :

{{ csrf_field() }}
@endforeach
@endsection