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