Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| aa59e55a41 | |||
| 348bad80e0 | |||
| f0d4686141 |
@@ -6,7 +6,7 @@
|
|||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta name="csrf-token" content="{{ csrf_token() }}">
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
||||||
<title>@yield('title') - Lucent Data Platform</title>
|
<title>@yield('title') - Lucent Data Platform</title>
|
||||||
|
<meta name="htmx-config" content='{"selfRequestsOnly": false}' />
|
||||||
@if(config("lucent.env") === "production")
|
@if(config("lucent.env") === "production")
|
||||||
<!-- if production -->
|
<!-- if production -->
|
||||||
<link rel="stylesheet" href="{{url('vendor/lucent/dist/'.$manifest['main.js']["css"][0])}}"/>
|
<link rel="stylesheet" href="{{url('vendor/lucent/dist/'.$manifest['main.js']["css"][0])}}"/>
|
||||||
|
|||||||
@@ -45,7 +45,12 @@ class RebuildThumbnails extends Command
|
|||||||
$records = $this->query->filter(["schema" => $schema->name])->run()->records;
|
$records = $this->query->filter(["schema" => $schema->name])->run()->records;
|
||||||
$disk = $this->fileService->loadDisk($schema->disk);
|
$disk = $this->fileService->loadDisk($schema->disk);
|
||||||
foreach ($records as $record) {
|
foreach ($records as $record) {
|
||||||
|
try{
|
||||||
|
|
||||||
$this->fileService->createTemplates($disk, $record->_file->path);
|
$this->fileService->createTemplates($disk, $record->_file->path);
|
||||||
|
} catch (Exception $e) {
|
||||||
|
echo "File ". $record->_file->originalName . " could not be rebuilt \n" ;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user