@extends('admin.layout.master')
@section('title', "$name")
@section('content')
{{-- @include('admin.layout.message')--}}
# |
الإسم |
رقم الجوال |
البريدالالكترونى |
المدينة |
@if($type == 'poet')
نوع الشعر |
@endif
الحالة |
التحكم |
@foreach($rows as $row)
{{$i}} |
{{$row->name}} |
{{$row->mobile}} |
{{$row->email}} |
{{$row->city->name}} |
@if($type == 'poet')
@if($row->poet_types == 'dialogue')
المحاورة |
@elseif($row->poet_types == 'elite')
نخبة |
@else
الكل |
@endif
@endif
{{
($row->status == 'active') ? "مفعل" : "غير مفعل"
}} |
|
@endforeach
@stop