@php
$schools = \App\Models\School::get();
$school_options = [];
foreach ($schools as $school) {
if (strpos(strtolower($school['description']), 'rweb') !== 0) {
// Add school description to the options if it doesn't start with "Rweb"
$school_options[] = $school['description'];
}
}
@endphp