@extends('admin.layout.master') @section('title', "البلاغات") @section('content')

البلاغات

البلاغات

@csrf
@foreach($auction_rows as $row) @endforeach
# اسم المبلغ اسم المزاد رقم المزاد صاحب المزاد الملاحظات تحديد الكل للحذف
{{$i}} {{$row->user->username}} {{$row->auction->title}} {{$row->auction->code}} {{$row->auction->user->username}} {{$row->note}}
@csrf
@foreach($ad_rows as $row) @endforeach
# اسم المبلغ اسم الاعلان رقم الاعلان صاحب الاعلان الملاحظات تحديد الكل للحذف
{{$i}} {{$row->user->username}} {{$row->ad->title}} {{$row->ad->code}} {{$row->ad->user->username}} {{$row->note}}
@csrf
@foreach($comments_rows as $row) @endforeach
# اسم المبلغ التعليق صاحب التعليق صاحب الاعلان رقم الاعلان الملاحظات تحديد الكل للحذف
{{$i}} {{$row->user->username}} {{$row->comment->comment}} {{$row->comment->user->username}} {{$row->comment->haraj->user->username}} {{$row->comment->haraj->code}} {{$row->note}}
@stop