@extends('admin.layouts.master')
@section('content')
{{ __('Experiences') }} - {{ $team_member->name }}
{{ __('SL') }} |
{{ __('Name') }} |
{{ __('Percentage') }} |
{{ __('Action') }} |
@php $i=0; @endphp
@foreach($experiences as $item)
@php $i++; @endphp
{{ $loop->iteration }} |
{{ $item->name }}
|
{{ $item->percentage }}
|
|
@endforeach
@endsection