@extends('souq.layout.master')
@section('title', "الموردين")
@section('content')
{{-- @include('admin.layout.message')--}}
# |
الاسم |
رقم الجوال |
المدينة |
الحالة |
التحكم |
@foreach($rows as $row)
{{$i}} |
{{$row->name}} |
{{$row->mobile}} |
{{$row->city ? $row->city->name['ar'] : "لا يوجد مدينة"}} |
{{
($row->status == 'active') ? "مفعل" : "غير مفعل"
}} |
|
@endforeach
@stop