@extends('back/layouts.app')
@section('back_css')
| # | Name | Phone | Courses | Status | @lang('core.actions') | ||
|---|---|---|---|---|---|---|---|
| {{ $row->id }} |
|
{{ $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
|