@extends('Layouts/dashboard')
@section('submenu')
@include(
'Plugins/Payment/Views/Elements/Tag/submenu',
[
'extra' => view(
'Plugins/Payment/Views/Elements/Tag/add_submenu',
['venue' => isset($venue) ? $venue : null]
)
]
)
@endsection
@section('content')
{!! pagination_sort('name', t('Name')) !!} |
{{ __('Colour') }} |
|
@foreach ($data as $row)
{{ $row->name }} |
color)
style="
background-color: {{ colors($row->color)['background'] }};
color: {{ colors($row->color)['text'] }};
"
@endif
>
@if ($row->color)
{{ colors($row->color)['name'] }}
@endif
|
|
@endforeach
{!! pagination(['total' => $pagination_total]) !!}
@endsection