@extends('back/layouts.app') @section('back_css') @endsection @section('content')

@php $langs = ''; @endphp @foreach($result as $row) @endforeach
# Name Email Phone Courses Status @lang('core.actions')
{{ $row->id }} {{ $row->name }} {{ $row->email }} {{ $row->phone }} @foreach($row->courses as $memberCourse) {{ $memberCourse->title }} . @endforeach {{ $row->status == 0 ? 'Disabled' : 'Enabled' }} @if ($row->status == 0) {!! Form::model($row, ['method' => 'PUT','route' => ['dashboard.members.status', $row->id,'class'=>'form-horizontal']]) !!} @lang('core.edit') @lang('core.delete') @elseif($row->status == 1) {!! Form::model($row, ['method' => 'PUT','route' => ['dashboard.members.status', $row->id]]) !!} @else @endif
@csrf
edit
@endsection @section('js_pagelevel') @endsection