{{-- ########################################## --}}
{{-- Extra CSS and JS for this particular field --}}
{{-- If a field type is shown multiple times on a form, the CSS and JS will only be loaded once --}}
@if ($crud->fieldTypeNotLoaded($field))
@php
$crud->markFieldTypeAsLoaded($field);
if (! function_exists('maximumServerUploadSizeInBytes')) {
function maximumServerUploadSizeInBytes() {
$val = trim(ini_get('upload_max_filesize'));
$last = strtolower($val[strlen($val)-1]);
switch($last) {
// The 'G' modifier is available since PHP 5.1.0
case 'g':
$val = (int)$val * 1073741824;
break;
case 'm':
$val = (int)$val * 1048576;
break;
case 'k':
$val = (int)$val * 1024;
break;
}
return $val;
}
}
$max_image_size_in_bytes = $field['max_file_size'] ?? (int)maximumServerUploadSizeInBytes();
@endphp
@push('crud_fields_styles')
@endpush
@push('crud_fields_scripts')
@endpush
@endif