Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
67 changes: 65 additions & 2 deletions _ide_helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

/**
* A helper file for Laravel, to provide autocomplete information to your IDE
* Generated for Laravel 10.26.2.
* Generated for Laravel 10.28.0.
*
* This file should not be included in your code, only analyzed by your IDE!
*
Expand Down Expand Up @@ -18484,7 +18484,6 @@ public static function sanitizeHtml()
/**
*
*
* @method static void setUpdateUri()
* @see \Livewire\LivewireManager
*/
class Livewire {
Expand Down Expand Up @@ -18753,6 +18752,26 @@ public static function withQueryParams($params)
*
* @static
*/
public static function withCookie($name, $value)
{
/** @var \Livewire\LivewireManager $instance */
return $instance->withCookie($name, $value);
}
/**
*
*
* @static
*/
public static function withCookies($cookies)
{
/** @var \Livewire\LivewireManager $instance */
return $instance->withCookies($cookies);
}
/**
*
*
* @static
*/
public static function test($name, $params = [])
{
/** @var \Livewire\LivewireManager $instance */
Expand Down Expand Up @@ -21629,6 +21648,17 @@ public static function extends($view, $params = [])
public static function layout($view, $params = [])
{
return \Illuminate\View\View::layout($view, $params);
}
/**
*
*
* @see \Livewire\Features\SupportPageComponents\SupportPageComponents::registerLayoutViewMacros()
* @param callable $callback
* @static
*/
public static function response($callback)
{
return \Illuminate\View\View::response($callback);
}

}
Expand Down Expand Up @@ -22592,6 +22622,39 @@ public static function chunkById($count, $callback, $column = null, $alias = nul
return $instance->chunkById($count, $callback, $column, $alias);
}

/**
* Chunk the results of a query by comparing IDs in descending order.
*
* @param int $count
* @param callable $callback
* @param string|null $column
* @param string|null $alias
* @return bool
* @static
*/
public static function chunkByIdDesc($count, $callback, $column = null, $alias = null)
{
/** @var \Illuminate\Database\Eloquent\Builder $instance */
return $instance->chunkByIdDesc($count, $callback, $column, $alias);
}

/**
* Chunk the results of a query by comparing IDs in a given order.
*
* @param int $count
* @param callable $callback
* @param string|null $column
* @param string|null $alias
* @param bool $descending
* @return bool
* @static
*/
public static function orderedChunkById($count, $callback, $column = null, $alias = null, $descending = false)
{
/** @var \Illuminate\Database\Eloquent\Builder $instance */
return $instance->orderedChunkById($count, $callback, $column, $alias, $descending);
}

/**
* Execute a callback over each item while chunking by ID.
*
Expand Down
2 changes: 1 addition & 1 deletion app/Http/Controllers/HomeController.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class HomeController extends Controller
public function __invoke(Request $request)
{
$settings = new GeneralSettings();
if (!$settings->public_dashboard_enabled) {
if (! $settings->public_dashboard_enabled) {
return redirect()->route('filament.admin.auth.login');
}

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"guzzlehttp/guzzle": "^7.8",
"influxdata/influxdb-client-php": "^3.4",
"laravel-notification-channels/telegram": "^4.0",
"laravel/framework": "^10.26.2",
"laravel/framework": "^10.28",
"laravel/prompts": "^0.1.11",
"laravel/sanctum": "^3.3.1",
"laravel/tinker": "^2.8.2",
Expand Down
Loading