BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
www
/
app.imagivibe.com
/
app
/
View
/
Components
/
Documents
📤 Upload
📝 New File
📁 New Folder
Close
Editing: Item.php
<?php namespace App\View\Components\Documents; use App\Extensions\AiVideoPro\System\Models\UserFall; use App\Models\Folders; use App\Models\UserOpenai; use Closure; use Illuminate\Contracts\View\View; use Illuminate\Database\Eloquent\Collection; use Illuminate\View\Component; class Item extends Component { /** * Create a new component instance. */ public function __construct( public UserOpenai|UserFall $entry, public string $style = 'min', public string $trim = '50', public bool $hideFav = false, public null|Collection|Folders $folders = null, ) {} /** * Get the view / contents that represent the component. */ public function render(): View|Closure|string { return view('components.documents.item'); } }
Save
Cancel