@extends('google::layouts.master') @section('title', '| Google Analytics Event Actions') @section('content')

Google Analytics Event Actions

@if (Auth::user()->hasAnyRole(['ADMIN'])) Create New @endif
All Actions
@if(count($actions) > 0) @foreach($actions as $action) @endforeach @endif
Name Category Created At Actions
{{$action->name}} {{$action->ga_categories ? $action->ga_categories->name : null}} {{$action->created_at}} @if (Auth::user()->hasAnyRole(['ADMIN'])) @endif @if (Auth::user()->hasAnyRole(['ADMIN'])) @include ('partials.modals._confirmation', ['id' => $action->id, 'confirm_route' => 'google.analytics.events.actions.delete', 'message' => 'Are you sure you want to delete ' . ($action->name ? '' : 'this') . ' action' . ($action->name ? ' ' . $action->name . '' : '') . '?', 'submitLabel' => 'Delete']) @endif
@endsection @push('scripts') @endpush