@extends('layouts.app') @section('content')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{{ Label('Operation') }} {{ customCreateSelect('type', 'type', '', '', ['ajax-curd' => 'Ajax CURD']) }} {{ Label('Table Name') }} {{ customCreateSelect('tableName', 'tableName', 'form-control custom-select2', '', $allTables) }} {{ Label('Write To') }} {{ createText('directoryName', 'directoryName', 'Directory Name') }}
@endsection @push('js') @endpush