mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Silence any errors here
This commit is contained in:
parent
ba3873ab85
commit
e3dd63a9cc
@ -43,6 +43,10 @@ class UnlinkFile implements ShouldQueue
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
Storage::disk($this->disk)->delete($this->file_path);
|
try {
|
||||||
|
Storage::disk($this->disk)->delete($this->file_path);
|
||||||
|
} catch (\Exception $e) {
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -20,6 +20,20 @@ return new class extends Migration
|
|||||||
$ir->decimal_separator = ',';
|
$ir->decimal_separator = ',';
|
||||||
$ir->save();
|
$ir->save();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$ld = \App\Models\Currency::find(115);
|
||||||
|
|
||||||
|
if(!$ld) {
|
||||||
|
$ld = new \App\Models\Currency();
|
||||||
|
$ld->id = 115;
|
||||||
|
$ld->code = 'LYD';
|
||||||
|
$ld->name = 'Libyan Dinar';
|
||||||
|
$ld->symbol = 'LD';
|
||||||
|
$ld->thousand_separator = ',';
|
||||||
|
$ld->decimal_separator = '.';
|
||||||
|
$ld->precision = 3;
|
||||||
|
$ld->save();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user