@extends('inventory.layout') @section('title', 'Check List') @section('content') @push('head') @endpush
{{($checklists->currentpage()-1)*$checklists->perpage()+1}} to {{$checklists->currentpage()*$checklists->perpage()}} of {{$checklists->total()}} entries  Add Item To Check List
@foreach($checklists as $lists) @endforeach
{{ __('Title')}} {{ __('Description')}} {{ __('Action')}}
{{ isset($lists->title) ? $lists->title :'' }} {{ \Illuminate\Support\Str::limit($lists->description, 70) }}                  

@push('script') @endpush @endsection