@extends('admin.layout.master')
@section('title', "رسائل الشركات")
@section('content')
{{-- @include('admin.layout.message')--}}
# |
الشركة |
المرسل |
المحتوى |
الحالة |
التحكم |
@foreach($rows as $row)
{{$i}} |
{{$row->company->email}} |
@if($row->sender == 'admin') الإدارة @else الشركة @endif |
{{$row->body}} |
@if($row->seen == 'true') تم الإطلاع @else لم يتم الإطلاع @endif |
@if($row->sender == 'company' && $row->seen == 'false')
@endif
|
@endforeach
@stop