@extends('tenant.layouts.master')
@section('title', 'Records')
@section('page-title', 'Records')
@section('breadcrumbs')
Records@endsection
@section('content')
| Collection | Data | Actions |
@foreach ($records as $record)
| {{ $record->collection?->name }} |
{{ json_encode($record->data, JSON_UNESCAPED_SLASHES) }} |
|
@endforeach
@endsection