@extends('general.index', $setup)
@section('thead')
{{ __('Name') }} |
{{ __('Campaing ID') }} |
{{ __('crud.actions') }} |
@endsection
@section('tbody')
@foreach ($setup['items'] as $item)
{{ $item->name }} |
{{ $item->id }} |
{{ __('Analytics') }}
{{ __('Delete') }}
|
@endforeach
@endsection