@extends('layouts.master')
@section('content')
{{$header['tableTitle']}}
| Sl |
Full Name |
Email |
Mobile |
Address |
Approved Status |
Status |
@foreach ($authoInfoLists as $key=>$item)
| {{$key+1}} |
{{$item->authors_name}} |
{{$item->author_email}} |
{{$item->author_mobile}} |
{{$item->author_address}} |
@if($item->author_approved_status == 1)
@else
@endif
|
@if($item->active_status == 1)
@else
@endif
|
@endforeach
@endsection