@section('title', 'Success Stories Listing')

{{ __('Success Stories') }}

@can('Create Success Stories') Add Success Story @endcan
@include('_message')
@foreach ($paginated as $value) @endforeach
{{ __('#') }} {{ __('Picture') }} {{ __('Name') }} {{ __('Description') }} {{ __('Action') }}
{{ $value->id }} Profile Picture {{ $value->user->name ?? 'N/A' }} & {{ $value->partner->name ?? 'N/A' }} @if (strlen($value->description) > 20) {{ Str::limit($value->description, 20) }} @else {{ $value->description }} @endif @can('Update Success Stories') @endcan @can('Delete Success Stories') @endcan
{{ $paginated->links() }}
@push('scripts') @endpush