Page MenuHomePhorge

Rooms.php
No OneTemporary

Authored By
Unknown
Size
622 B
Referenced Files
None
Subscribers
None

Rooms.php

<?php
namespace App\Console\Commands\Meet;
use App\Console\Command;
class Rooms extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'meet:rooms';
/**
* The console command description.
*
* @var string
*/
protected $description = 'List Meet rooms';
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
$rooms = \App\Meet\Room::all();
foreach ($rooms as $room) {
$this->info("{$room->name}");
}
}
}

File Metadata

Mime Type
text/x-php
Expires
Apr 4 2026, 12:07 AM (4 w, 2 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
18821628
Default Alt Text
Rooms.php (622 B)

Event Timeline