@extends('layouts.frontend') @section('content')
@can('survey_create')
{{ trans('global.add') }} {{ trans('cruds.survey.title_singular') }} @include('csvImport.modal', ['model' => 'Survey', 'route' => 'admin.surveys.parseCsvImport'])
@endcan
{{ trans('cruds.survey.title_singular') }} {{ trans('global.list') }}
@foreach($surveys as $key => $survey) @endforeach
{{ trans('cruds.survey.fields.id') }} {{ trans('cruds.survey.fields.customer') }} {{ trans('cruds.survey.fields.value_1') }} {{ trans('cruds.survey.fields.value_2') }}  
{{ $survey->id ?? '' }} {{ $survey->customer->name ?? '' }} {{ $survey->value_1 ?? '' }} {{ $survey->value_2 ?? '' }} @can('survey_show') {{ trans('global.view') }} @endcan @can('survey_edit') {{ trans('global.edit') }} @endcan @can('survey_delete')
@endcan
@endsection @section('scripts') @parent @endsection