Skip to content

Instantly share code, notes, and snippets.

@markbratanov
Created February 18, 2019 20:42
Show Gist options
  • Save markbratanov/5a7d5f9eaf657b68684b4b1cd44513b5 to your computer and use it in GitHub Desktop.
Save markbratanov/5a7d5f9eaf657b68684b4b1cd44513b5 to your computer and use it in GitHub Desktop.
<?php
return [
'work_orders' => [ // Stream Slug
'table' => [ // UI Type
'filters' => [ // Component
'search' => [
'wo_subject',
'wo_description',
],
'wo_status',
'wo_priority',
],
'columns' => [ // Component
'number' => [
'heading' => 'Number',
'wrapper' => '{value.year}{value.id}',
'value' => [
'year' => '2019',
'id' => 'entry.id',
],
],
'wo_subject' => [
'heading' => 'Work Order',
],
'wo_priority' => [
'heading' => 'Priority',
],
'wo_start_date' => [
'heading' => 'Start date',
],
],
'buttons' => [
'view',
],
],
],
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment