@extends('layouts.admin') @section('content')
@can('psychosocial_experience_create')
@endcan
{{ trans('cruds.psychosocialExperience.title_singular') }} {{ trans('global.list') }}
@foreach($psychosocialExperiences as $key => $psychosocialExperience) @endforeach
{{ trans('cruds.psychosocialExperience.fields.id') }} {{ trans('cruds.psychosocialExperience.fields.psychosocial_experience') }} {{ trans('cruds.psychosocialExperience.fields.licensee') }} {{ trans('cruds.psychosocialExperience.fields.psychiatrist') }} {{ trans('cruds.psychosocialExperience.fields.advisor') }} {{ trans('cruds.psychosocialExperience.fields.social_worker') }} {{ trans('cruds.psychosocialExperience.fields.trauma_based_therapy') }} {{ trans('cruds.psychosocialExperience.fields.cognitive_behavioural_therapy') }} {{ trans('cruds.psychosocialExperience.fields.psychodynamic_therapy') }} {{ trans('cruds.psychosocialExperience.fields.psychoanalytic_therapy') }} {{ trans('cruds.psychosocialExperience.fields.integrative_or_holistic_therapy') }} {{ trans('cruds.psychosocialExperience.fields.humanistic_therapy') }} {{ trans('cruds.psychosocialExperience.fields.pediatric_therapy') }} {{ trans('cruds.psychosocialExperience.fields.user') }}  
{{ $psychosocialExperience->id ?? '' }} {{ $psychosocialExperience->psychosocial_experience->name ?? '' }} {{ $psychosocialExperience->licensee->name ?? '' }} {{ $psychosocialExperience->psychiatrist->name ?? '' }} {{ $psychosocialExperience->advisor->name ?? '' }} {{ $psychosocialExperience->social_worker->name ?? '' }} {{ $psychosocialExperience->trauma_based_therapy->name ?? '' }} {{ $psychosocialExperience->cognitive_behavioural_therapy->name ?? '' }} {{ $psychosocialExperience->psychodynamic_therapy->name ?? '' }} {{ $psychosocialExperience->psychoanalytic_therapy->name ?? '' }} {{ $psychosocialExperience->integrative_or_holistic_therapy->name ?? '' }} {{ $psychosocialExperience->humanistic_therapy->name ?? '' }} {{ $psychosocialExperience->pediatric_therapy->name ?? '' }} {{ $psychosocialExperience->user->name ?? '' }} @can('psychosocial_experience_show') {{ trans('global.view') }} @endcan @can('psychosocial_experience_edit') {{ trans('global.edit') }} @endcan @can('psychosocial_experience_delete')
@endcan
@endsection @section('scripts') @parent @endsection