@extends('frontend.index') @section('content')
@if(count($data)>0)
  • @lang('frontend.teacherinfo')
  • @if(isset($data)) @foreach($data as $d)

    @lang('frontend.name') {{ $d->name }}
    @lang('frontend.designation') {{ $d->designation }}
    @lang('frontend.mobile') {{ $d->mobile }}
    @lang('frontend.mail') {{ $d->email }}
    id) }}" class="btn btn-warning text-white btn-sm float-end">@lang('frontend.detail')
    @endforeach @endif
  • @else Not Found... @endif
    @include('frontend.sidebar')
    @endsection