@extends('layouts.master')
@section('title','Connection Goal list')
@section('content')
Connection Goal List
@if (session('success'))
{{ session('success') }}
@endif
|
Name
|
Actions |
@forelse ($interests as $interest)
| {{ $interest->name }} |
Edit
|
@empty
| No Preference found. |
@endforelse
{{ $interests->links('pagination::bootstrap-5') }}
@endsection