@extends('template.layout')
@section('title', 'Spells')
@section('submenuItem', 'spells')
@section('content')
@php
include "./spells.php";
usort($spells, function ($a, $b) {
return strcmp($a['name'], $b['name']);
});
@endphp
Here you can see the list of all available spells in {{ config('server.serverName') }}. Please adjust the search criteria below if you want to see just certain spells. Also, you can sort the spell list by any column of your choice.
|
|