@extends('admin.layouts.master')
@section('content')
{{ trans('inspector::lang.type') }} |
{{ trans('inspector::lang.prohibited') }} |
{{ trans('inspector::lang.attempt') }} |
{{ trans('inspector::lang.status') }} |
{{ trans('inspector::lang.option') }} |
@foreach($inspectables as $inspectable)
@if(! empty($inspectable))
@php
$class = new $inspectable->inspectable_type();
$type = $class->getTable();
@endphp
{{ $type }} |
{{ $inspectable->caught }} |
{{ $inspectable->attempts }} |
{{get_inspection_status_name($inspectable->status)}} |
|
@endif
@endforeach
@endsection