@extends('layouts.frontend') @section('content')
| {{ 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 |