{{-- List of table revisions --}}

@extends('layouts.app')
@section('title', "Favouriting Users - $table->title")

@php
/** @var \App\Models\Table $table */
/** @var \App\Models\User[]|\Illuminate\Support\Collection $users */
@endphp

@section('content')
  @include('table._table-subpage-header')

  <div class="row px-3 border-top pt-3">
    <div class="col-md-12">
      <h2>Favouriting Users</h2>
    </div>

    <div class="col-md-12 d-flex flex-wrap">
      @foreach($users as $user)
        <div class="col-md-4 px-0">
          <div class="rounded border box-shadow-thin m-1 px-2 d-flex align-items-center py-1">
            <span class="flex-grow-1" style="font-size:140%;font-weight:bold">
              {{ $user->title }}
            </span>

            <span>
              <a href="{{route('profile.view', $user->name)}}"
                 class="btn btn-outline-secondary btn-sm"
              >
                @icon(fa-user fa-pr)Profile
              </a>
              <a href="{{route('profile.view-favourites', $user->name)}}"
                 class="btn btn-outline-secondary btn-sm"
              >
                @icon(fa-star fa-pr)Faves
              </a>
            </span>
          </div>
        </div>
      @endforeach
    </div>
  </div>
@endsection