@extends('tenant.layouts.master')
@section('title', 'Collections')
@section('page-title', 'Collections')
@section('breadcrumbs')
Collections@endsection
@section('content')
| Name | Key | Records | Actions |
@foreach ($collections as $collection)
| {{ $collection->name }} |
{{ $collection->key }} |
{{ $collection->records_count }} |
|
@endforeach
@endsection