@extends('inventory.layout')
@section('title', 'Assign Forms')
@section('content')
@push('head')
@endpush
{{__('Step Id')}} |
{{ __('Form Name')}} |
{{ __('Status')}} |
{{ __('Action')}} |
@foreach($steps as $step)
{{isset($step->stepId) ? $step->stepId:''}} |
{{ isset($step->formdetail->title) ? $step->formdetail->title :'' }}
|
{{ isset($step->status) ? $step->status :'' }} |
{{----}}
|
@endforeach
@push('script')
@endpush
@endsection