The dashboard should offer the ability to toggle the theme between:
- Automatic (System)
- Light
- Dark
Further, the dashboard should have a "Theme" option to force a theme mode.
Repositories:
(735)
Labels:
(5)
Found 59 issues
First time here? 👋
Welcome to Find a PR.
Find a PR is an open-source site that is built to help developers find projects so that they can submit their very first pull request.
If you're a contributor looking to find a project to contribute to, feel free to browse through the list below.
If you're a maintainer looking to list your project on Find a PR, you can read how to do this in the documentation.
The dashboard should offer the ability to toggle the theme between:
Further, the dashboard should have a "Theme" option to force a theme mode.
jbrooksuk
3rd Oct 2024 @ 18:34
AST, or "abstract syntax tree", creates the expectation of a nested tree structure. In the case of a query string, the AST will only ever be one level deep; as multi nodes are combined into one.
If anyone wants to suggest a better, more clear name: you're welcome.
brendt
20th Dec 2018 @ 13:41
2.6.2
11.16.0
8.3.6
Swoole
5.1.2
No response
Before i start, this is not a duplicate to https://github.com/laravel/octane/issues/903, this is about Swoole. Also large stream responses are fixed with https://github.com/laravel/octane/issues/636, but not this case.
While using Storage::download or Storage::response, laravel is creating a stream response that uses php fpassthru($stream). Somehow the buffering between fpassthru and ob_start does not work, instead it tries to load the full file into the memory. This leads to out of memory errors while downloading very big files.
If i replace the fpassthru with a fread-while-loop it is working as expected.
I can basically make a pull request, but need help with the solution... Is this more a problem in the laravel framework or PHP itself?
NiroDeveloper
24th Jul 2024 @ 11:18
The docs aren't finished. This issue exists to track the missing pieces:
simonhamp
8th Sep 2024 @ 15:01
Hello,
I noticed that there is an incompatibility with the mbstring polyfill and PHP 8.1 / Alpine Linux, which breaks a lot of my projects as soon as the php81-mbstring is not installed, but php81-iconv is installed:
Example:
Warning: iconv(): Wrong encoding, conversion from "ASCII" to "UTF-8//IGNORE" is not allowed in phar:///var/www/localhost/htdocs/phpstan.phar/vendor/symfony/polyfill-mbstring/Mbstring.php on line 736
It looks like //IGNORE
is not accepted since echo iconv('UTF-8', 'UTF-8', 'test');
works, while echo iconv('UTF-8', 'UTF-8//IGNORE', 'test');
doesn't
danielmarschall
7th Jan 2022 @ 00:12
For some reason, our test suite is super slow. We should look into this and try to decrease memory usage and speed it up.
Parallel run:
Tests: 316 passed (785 assertions)
Duration: 13.64s
Parallel: 10 processes
Regular run:
Tests: 316 passed (785 assertions)
Duration: 96.30s
driesvints
29th Dec 2023 @ 10:43
Figure our a way to show a grayed out Laravel logo as a default avatar instead of the current default GitHub one.
driesvints
29th Sep 2021 @ 10:48
Describe the bug
When you attempt to dump a binary string or anything containing one (like an array or an object), Ray does not dump anything. It just fails silently.
Versions
Ray version (you can see this in "About Ray"): 2.8.1
You can use composer show
to get the version numbers of:
PHP version: 8.2.17 Laravel version (if applicable): 11.18.1
To Reproduce
Add this in your code:
ray(hex2bin('ae0f3d'));
Expected behavior
Ray should display this (like the console when dump
is used):
b"®\x0F="
Desktop (please complete the following information):
sebj54
27th Aug 2024 @ 14:57
Once scheduled maintenance has completed, it should appear in the incident timeline.
jbrooksuk
5th Oct 2024 @ 07:42
We can't seem to upgrade to v3 because they removed the ability to output images as responses: https://image.intervention.io/v3/introduction/upgrade
We'll need to figure out a new way to generate social images.
driesvints
22nd Nov 2024 @ 15:16
We are logging activity of several models, some using SoftDeletes trait and others not.
When we set config option 'subject_returns_soft_deleted_models' => true
then calling subject()
on any model not using SoftDeletes trait throws an exception: Call to undefined method Illuminate\Database\Eloquent\Builder::withTrashed()
.
Can the subject()
method below be made to check first whether the Model uses the SoftDeletes trait? Or perhaps check whether withTrashed()
is a defined method on the Model? I tried a few things but couldn't figure out how to get the class of the Model..
bluec
7th Nov 2018 @ 13:44
2.5.9
11
8.3
Swoole
8.3
No response
Wildcard paths like config/**/*.php
in the watch
array of config/octane.php
aren't working properly.
octane:start --watch
(I'm using Swoole)config
directory. Octane won't restartconfig/**/*.php
to config
in the watch
array of config/octane.php
config
directory. Octane will now correctly restartSame problem with anything else using wildcards eg. database
(try modifying a seeder to test).
binaryfire
14th Nov 2024 @ 11:57
Hi,
With the polyfill, var_dump(mb_strlen(chr(254)))
return 0
.
With the php8.0-mbstring extension, var_dump(mb_strlen(chr(254))) return 1
;
versions : * v1.26.0
Thanks, Alex
alexchuin
18th Oct 2022 @ 12:51
Add in PHP 7.3 as Normalizer::normalize() argument for NFKC_Casefold normalization.
nicolas-grekas
7th Feb 2019 @ 10:11
When encountering nested tokens, they are parsed only during formatting, not when compiling the pattern. And the type of tokens are validated only during the rendering as well. But the native implementation detects such error during the instantiation: https://3v4l.org/Sf69D This means that the error handling required for the polyfill is not the same than for the native implementation.
stof
23rd Oct 2018 @ 15:58
When attempting to filter tests by test or file name pressing the "Enter" key has no effect.
Pressing "Enter" at the default screen correctly triggers a "test run" where all tests are run.
ntwb
25th Feb 2018 @ 10:49
In raising this issue, I confirm the following (please check boxes):
One of the important reasons for using hyperscript is that it handles escaping of characters which are reserved in html. Which prevents XSS.
spatie/html-element does not do this. Mainly because it uses strings as intermediate format instead of an object representation of the DOM.
Erikvv
1st Feb 2018 @ 02:19
When using the addToMediaFromURL method, I'm receiving a Could Not Load Image error on the server, but not locally (I'm using Laravel Vapor) and not with other image formats.
The code below is where the error is occuring and that code is receiving an absolute file path to the image in s3, which is available.
public function addToMediaLibrary($file_path) { $media = $this->addMediaFromUrl($file_path) ->toMediaCollection("", 's3'); return $media; }
As an example the file path when logged out is https://s3.sitesforsaas.com/tenants/d221c93a-3757-466c-bf83-b74a9ee64c04/sites/9cfc24c7-cb2a-4c5a-8c0f-73ecdc79c166/2024/09/4e9854b0-4f2d-4931-a726-01f557bd7fc6.webp
, but the error is looking for the image in local 'tmp' storage for some reason.
Could not load image at path
/tmp/storage/tenantd221c93a-3757-466c-bf83-b74a9ee64c04/media-library/temp/j7pNMerUdReNx9MfAG5rKjcmGHWu4i99/LM2UYMTcYU0BO8sLsTfeOBpS9eXximejlarge.webp`",
josiahmann
11th Sep 2024 @ 21:32
The themes dashboard needs finishing and actually needs implementing into the status page. Changing a color doesn’t do anything currently.
jbrooksuk
3rd Oct 2024 @ 18:42
Describe the bug
logUnguarded()
works provided that $guarded
is set explicitly in the model. If it is not set explicitly but globally set, say in AppServiceProvider
using Model::unguard();
then nothing is logged.
To Reproduce
$fillable
and $guarded
from a model that use uses LogsActivity
Model::unguard();
in AppServiceProvider
in the boot
method public function getActivitylogOptions() : LogOptions
{
return LogOptions::defaults()->logUnguarded();
}
Expected behavior Some changed properties should be logged but none are
Versions (please complete the following information)
colinmackinlay
20th Nov 2022 @ 12:31
We need to implement the metric charts into the status page.
jbrooksuk
5th Mar 2024 @ 16:00