@extends('layouts.admin') @section('admin')

Room

@foreach($themes as $theme) @endforeach
Room ID Created By Theme Status Created Date Action
{{$theme->room->room_id ?? ''}} {{$theme->user->name ?? ''}} @if(!empty($theme->room_image) && file_exists($theme->room_image)) @else @endif @if($theme->status == 'pending') Pending @elseif($theme->status == 'approved') Approved @elseif($theme->status == 'rejected') Rejected @else Not Set @endif {{\Carbon\Carbon::parse($theme->created_at)->format('Y-m-d')}}
{{$themes->links()}}
@endsection