{{-- Extends layout --}} @extends('admin.layouts.app') {{-- Content --}} @section('content')

{{ __('Determinations') }}

@foreach($list as $record) @endforeach
{{ __('Photo') }} {{ __('Title') }} {{ __('User') }} {{ __('Specie') }} {{ __('Category') }} {{ __('Status') }} {{ __('Actions') }}
{{ $record->title }} {{ $record->user->name }} {{ !empty($record->specie->title)?$record->specie->title:'-' }} {{ $record->category->title }} {{ $record->status->title }}
{{ $list->links() }}
@endsection {{-- Styles Section --}} @section('styles') @endsection {{-- Scripts Section --}} @section('scripts') @endsection