ifox
01/17/2022, 4:08 PMFourStacks
01/17/2022, 4:21 PMSebastianpusch
01/17/2022, 4:37 PM$titleColumnKey property?Sebastianpusch
01/17/2022, 4:38 PM'title' => ucfirst($this->titleColumnKey),ifox
01/17/2022, 4:41 PM$indexColumns yourself, the code you mention is not executedSebastianpusch
01/17/2022, 4:44 PMSebastianpusch
01/17/2022, 4:44 PMSebastianpusch
01/17/2022, 4:46 PMifox
01/17/2022, 4:48 PMcreate.blade.php file, right?Sebastianpusch
01/17/2022, 4:51 PMtitleFormKey translationdpadular
01/17/2022, 6:16 PMifox
01/17/2022, 6:51 PMfm for format, for example.dpadular
01/17/2022, 6:55 PMSebastianpusch
01/18/2022, 8:16 AMHarings Rob
01/18/2022, 8:25 AMHarings Rob
01/18/2022, 8:25 AMHữu Hiếu
01/18/2022, 8:26 AMHarings Rob
01/18/2022, 8:26 AMleftblank
01/19/2022, 4:55 PMclient_max_body_size 512M;, and set FILE_LIBRARY_FILESIZE_LIMIT=512 in my .env, and cleared the environment cache. but i'm still getting an error "test-video.mp4 is too large, maximum file size is 52.4MB."leftblank
01/19/2022, 4:55 PMHarings Rob
01/19/2022, 4:58 PMHarings Rob
01/19/2022, 4:59 PMprotected function getPostMaxSize()
{
if (is_numeric($postMaxSize = ini_get('post_max_size'))) {
return (int) $postMaxSize;
}
$metric = strtoupper(substr($postMaxSize, -1));
$postMaxSize = (int) $postMaxSize;
switch ($metric) {
case 'K':
return $postMaxSize * 1024;
case 'M':
return $postMaxSize * 1048576;
case 'G':
return $postMaxSize * 1073741824;
default:
return $postMaxSize;
}
}Harings Rob
01/19/2022, 5:00 PMleftblank
01/19/2022, 5:00 PMleftblank
01/19/2022, 5:01 PMleftblank
01/19/2022, 5:01 PMHarings Rob
01/19/2022, 5:02 PMleftblank
01/19/2022, 5:03 PMleftblank
01/19/2022, 5:03 PM