@extends('inventory.layout') @section('title', 'Check List Detail') @section('content') @push('head') @endpush
@if(isset($checklists)) @foreach($checklists->checklistdetail as $lists) @endforeach @else

No data available

@endif
{{ __('Title')}} {{ __('Description')}} {{ __('Display Sequence')}} {{ __('Action')}}
{{ isset($lists->title) ? $lists->title :'' }} {{ \Illuminate\Support\Str::limit($lists->description, 70) }}       {{--

@push('script') @endpush @endsection