@extends('layouts.app') @section('content')
{{-- Dash card --}}
Dashboard
@if (session('status')) @endif

You are logged in!

blabla dashboard things ...

{{-- Table list card --}}
Your Tables New
@if(count($tables) == 0) No tables yet. @else @foreach($tables as $table) {{ $table->title }} @endforeach {{ $tables->links() }} @endif
@endsection