@extends('backoffice.layout.master') @section('setSectionTitle', __('Seleziona una o più skill.')) @section('setSectionButton') @endsection @section('setContent')
@csrf @php $grouped = $skills->groupBy('category'); @endphp
@foreach($grouped as $category => $categorySkills)
{{ $category }}
@foreach($categorySkills as $skill)
@endforeach
@endforeach
@endsection @section('setBodyEnd') @endsection