@extends('backend.layouts.master') @section('title', 'Category') @section('scripts') @endsection @section('content')
Backend
Photo
Category
{{ $category->name }}
{{ $category->name }}
Details
ID
{{ $category->id }}
Name
{{ $category->name }}
Slug
{{ $category->slug }}
Sort Order
{{ $category->sort_order }}
Created
{{ $category->created_at->diffForHumans() }}
Last Updated
{{ $category->updated_at->diffForHumans() }}
Actions
Edit
{!! csrf_field() !!} {!! method_field('delete') !!}
Delete
Photos
@foreach($category->photos as $photo) @endforeach
ID
Subject
Author
Created
Actions
{{ $photo->id }}
{{ $photo->subject }}
{{ $photo->user->name }}
{{ $photo->created_at->diffForHumans() }}
Delete Confirmation
×
Please confirm you would like to delete the selected resourse.
@endsection