@extends('layouts.app') @section('content')
@include('components.alert_success') @include('components.alert_error') @can('interests_write') @endcan
@foreach($interests as $interest) @endforeach
# Nom Type Description
{{ $interest->id }} {{ $interest->label }} {{ $interest->type === 'interest' ? 'Centre d\'intérêt' : 'Qualification'}} {{ $interest->description }} @can('interest_groups_write') @endcan
{{ $interests->links() }}
@endsection