@extends('rapyd::demo.demo') @section('title','DataSet') @section('body')

DataSet


@foreach ($set->data as $item)
{!! $item->title !!}
{!! $item->author->firstname !!} {!! $item->author->lastname !!}
{!! implode(", ", $item->categories->lists("name")->all()) !!}
@endforeach
{!! $set->links() !!}
order by title asc,
order by title desc
{!! Documenter::showMethod("Zofe\\Rapyd\\Demo\\DemoController", "getSet") !!} {!! Documenter::showCode("zofe/rapyd/views/demo/set.blade.php") !!} @stop