Skip to content

Commit 90728a8

Browse files
committed
Merge branch 'extension-pr/claymores-and-companions' of https://github.com/perappu/lorekeeper into extension-pr/claymores-and-companions
2 parents 69b9d68 + bce7016 commit 90728a8

3 files changed

Lines changed: 7 additions & 10 deletions

File tree

app/Http/Controllers/Admin/Stats/LevelController.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ class LevelController extends Controller {
2020
public function getLevels(Request $request, $type = 'Character') {
2121
$levels = Level::ordered($type);
2222

23-
//$page = (int) request('page', 1);
24-
//$perPage = 20;
23+
// $page = (int) request('page', 1);
24+
// $perPage = 20;
2525

2626
return view('admin.levels.levels', [
2727
'type' => $type,
2828
'levels' => $levels->paginate(20)->appends($request->query()),
2929
]);
3030
}
31-
31+
3232
/**
3333
* Shows the create level page.
3434
*

database/migrations/2026_03_07_225854_fix_gear_descriptions.php

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,11 @@
44
use Illuminate\Database\Schema\Blueprint;
55
use Illuminate\Support\Facades\Schema;
66

7-
return new class extends Migration
8-
{
7+
return new class extends Migration {
98
/**
109
* Run the migrations.
1110
*/
12-
public function up(): void
13-
{
11+
public function up(): void {
1412
Schema::table('gears', function (Blueprint $table) {
1513
$table->text('description')->change();
1614
});
@@ -19,8 +17,7 @@ public function up(): void
1917
/**
2018
* Reverse the migrations.
2119
*/
22-
public function down(): void
23-
{
20+
public function down(): void {
2421
Schema::table('gears', function (Blueprint $table) {
2522
$table->string('description')->change();
2623
});

resources/views/admin/levels/levels.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,5 +70,5 @@
7070
</table>
7171
@endif
7272
{!! $levels->render() !!}
73-
73+
7474
@endsection

0 commit comments

Comments
 (0)