@extends('adminlte::page') @section('title', 'Photo Documents') @section('content_header')

Photo Documents

@stop @section('content')
Add
@foreach ($reasons as $reason) @php $details = \App\Models\PhotoMakerDocument::where('id', $reason->id)->first(); $id = \App\Models\PhotoTable::where('photo_maker_doc_id', $details->id) ->where('cat_id', $details->cat_id) ->value('id'); @endphp @endforeach
Category Name Height Width Action
{{$reason['category']['title'] ?? 'N/A' }} {{$reason->name ?? 'N/A' }} {{ $reason->mmHeight ?? 'N/A' }} {{ $reason->mmWidth ?? 'N/A' }}   Table @isset($id) Table Edit @endisset
{{ $reasons->withQueryString()->links('pagination::bootstrap-4') }}
@stop