Laravel is a web application framework with expressive, elegant syntax. We’ve already laid the foundation for your next big idea — freeing you to create without sweating the small things.
Minimal Laravel authentication scaffolding with Blade, Vue, or React + Tailwind.
Fixed a grammatical error on line 1006
.
I fixed a grammatical error.
https://github.com/laravel/telescope/issues/1331
I found the solution.
After installing Telescope it is necessary to restart processing of the queues.
/etc/init.d/supervisor restart
Same issues 1111 and 1113
I use Laravel with Redis and Horizon, with service supervisor.
Queues are saved and processed correctly, but in Telescope maintains the "pending" state
I did two tests, one queue pending and one processed. View image.
Attached diagram.
Same issues 1111 and 1113
I use Laravel with Redis and Horizon, with service supervisor.
Queues are saved and processed correctly, but in Telescope maintains the "pending" state
I did two tests, one queue pending and one processed. View image.
Attached diagram.
Support for iPhone HEIC Profile Photo Upload.
I'm building a package and just stumbled upon a broken package discovery.
The package has a ServiceProvider
and should merge configuration:
$this->mergeConfigFrom($this->base_path('config/frontend.php'), 'frontend');
When trying to run composer install
or e.g. php artisan optimize:clear
the said error rises:
$ php artisan optimize:clear
In ServiceProvider.php line 138:
Call to a member function get() on array
I changed the following lines
https://github.com/laravel/framework/blob/485f22333e8c1dff5bae0fe0421c1e2e139713de/src/Illuminate/Support/ServiceProvider.php#L137-L139
to these
$orig = $config->get($key, []);
$config->set($key, array_merge(
require $path, $orig
));
which fixed the error.
Unfortunately I'm unable to explain why this fixes the error.
<?php
use Illuminate\Support\Str;
$config = array_filter($_ENV, function($key) {
return Str::startsWith($key, 'FRONTEND_');
}, ARRAY_FILTER_USE_KEY);
return [
'title' => env('FRONTEND_TITLE', env('APP_NAME')),
'description' => env('FRONTEND_DESCRIPTION'),
'company' => env('FRONTEND_COMPANY'),
'email' => env('FRONTEND_CONTACT_EMAIL'),
'config' => $config,
];
[10.x] Update CHANGELOG.md