{{-- Public landing page --}} @php /** @var \App\Models\User[]|\Illuminate\Support\Collection|\Illuminate\Pagination\LengthAwarePaginator $users */ /** @var \App\Models\Table[]|\Illuminate\Support\Collection|\Illuminate\Pagination\LengthAwarePaginator $tables */ @endphp @extends('layouts.app') @section('title', "All Tables") @section('content') @if($showGreeter) @include('_greeter') @endif
@icon(fa-users fa-pr fa-large)

Users

@icon(fa-table fa-pr fa-large)

Tables:

@include('table._sort-dropdown', [ 'link' => route('dash', Input::except(['tableSort', 'tablePage']) + ['tableSort' => '__sort']) ]) @if(authed() && user()->confirmed) New @endif
@include('profile._table-list', ['showAuthors' => true])
@endsection