@extends('admin.layouts.master') @section('title', 'All Instructor skill - Admin') @section('maincontent') @include('admin.layouts.topbar',$data)
@if ($errors->any()) @endif
{{ __('All Instructor skill') }}
​ @if(isset($datas)) @foreach($datas as $key=>$p) @if(isset($p)) @endif @endforeach @endif
# {{ __('Instructor Name') }} {{ __('Instructor Skills') }} {{ __('Action') }}
{{ $loop->iteration }} {{ $p->user->fname ?? '' }} {{ $p->skills ?? ''}}


@endsection