@extends('inventory.layout')
@section('title', 'Forms')
@section('content')
@push('head')
@endpush
{{ __('Title')}} |
{{ __('Description')}} |
{{ __('Action')}} |
@foreach($forms as $form)
{{ isset($form->title) ? $form->title :'' }} |
{{ \Illuminate\Support\Str::limit($form->description, 70) }} |
|
@endforeach
@push('script')
@endpush
@endsection