@extends('admin.layout.master') @section('title', 'Dynamic Crud List') @section('custom_style') @endsection @section('content')

Dynamic Crud List

{{-- @if(checkAuthPermission('admin.setting.dynamic_crud.store')) --}} {{-- @endif --}}
@php($i = 1) @foreach ($listData as $item) @endforeach
# Title Type Model Name Route Prefix Field Name Warehouses Type Is Migration Allow Status Action
{{ $i++ }} {{ $item->title }} {{ $item->type }} {{ $item->table_name }} {{$item->route_name}} @forelse(collect(json_decode($item->setting_object)) as $setting) {{$setting->field_name}}, @empty {{__('obs.not_asigned')}} @endforelse {{ $item->warehouse_type?($item->warehouse_type==1?__('obs.warehouses'):__('obs.store')):__('obs.n_o') }} {{ $item->is_migration_allow?'Yes':'No' }} @if ($item->status == 1)

Active

@else

Inactive

@endif
{{-- @if(checkAuthPermission('admin.setting.dynamic_crud.edit')) --}} {{-- @endif --}}
@include('admin.global.loader') @include('v2.admin.global.offcanvas', ['blade'=>'v2.admin.dynamic_crud.form','style'=> 'style="width: 85vw;"', 'title'=> 'Add Dynamic Crud']); @endsection @section('script') @endsection