@extends('layouts.admin') @php $is_update = false; if(isset($checklistData) && !empty($checklistData)){ $is_update = true; } $type = 1; if(app('request')->input('type')){ $type = app('request')->input('type'); } @endphp @section('css') @endsection @section('breadcrumb')

{{ $is_update ? 'Edit' : 'New' }} Checklist Template

@endsection @section('content')
@csrf @if($is_update) @endif
@if($is_update) @php $count = 0; @endphp @foreach($checklistData->checklist as $checklist)
@php $count++; @endphp @endforeach @else
@endif
@endsection @section('script-bottom') @endsection