@extends('admin.layouts.master')
@section('title', 'Records')
@section('page-title', 'Records')
@section('breadcrumbs')
Records@endsection
@section('content')
| Tenant | Collection | Data | Actions |
@forelse ($records as $record)
| {{ $record->collection?->tenant?->name }} |
{{ $record->collection?->name }} |
{{ json_encode($record->data, JSON_UNESCAPED_SLASHES) }} |
|
@empty
| No records yet. |
@endforelse
{{ $records->links() }}
@endsection