X7ROOT File Manager
Current Path:
/home/gfecatvj/sites/vendor/illuminate/support/Facades
home
/
gfecatvj
/
sites
/
vendor
/
illuminate
/
support
/
Facades
/
📁
..
📄
App.php
(2.34 KB)
📄
Artisan.php
(1.06 KB)
📄
Auth.php
(2.37 KB)
📄
Blade.php
(1.57 KB)
📄
Broadcast.php
(740 B)
📄
Bus.php
(1.78 KB)
📄
Cache.php
(1.6 KB)
📄
Config.php
(557 B)
📄
Cookie.php
(973 B)
📄
Crypt.php
(718 B)
📄
DB.php
(1.65 KB)
📄
Date.php
(5.46 KB)
📄
Event.php
(2.53 KB)
📄
Facade.php
(5.96 KB)
📄
File.php
(2.6 KB)
📄
Gate.php
(1.67 KB)
📄
Hash.php
(585 B)
📄
Http.php
(3.04 KB)
📄
Lang.php
(668 B)
📄
Log.php
(1.05 KB)
📄
Mail.php
(1.94 KB)
📄
Notification.php
(2.01 KB)
📄
Password.php
(1.11 KB)
📄
Queue.php
(1.9 KB)
📄
Redirect.php
(2 KB)
📄
Redis.php
(625 B)
📄
Request.php
(4.96 KB)
📄
Response.php
(2.35 KB)
📄
Route.php
(3.19 KB)
📄
Schema.php
(1.59 KB)
📄
Session.php
(1.37 KB)
📄
Storage.php
(3.51 KB)
📄
URL.php
(1.4 KB)
📄
Validator.php
(733 B)
📄
View.php
(1.12 KB)
Editing: DB.php
<?php namespace Illuminate\Support\Facades; /** * @method static \Illuminate\Database\ConnectionInterface connection(string $name = null) * @method static \Illuminate\Database\Query\Builder table(string $table, string $as = null) * @method static \Illuminate\Database\Query\Expression raw($value) * @method static array prepareBindings(array $bindings) * @method static array pretend(\Closure $callback) * @method static array select(string $query, array $bindings = [], bool $useReadPdo = true) * @method static bool insert(string $query, array $bindings = []) * @method static bool statement(string $query, array $bindings = []) * @method static bool unprepared(string $query) * @method static int affectingStatement(string $query, array $bindings = []) * @method static int delete(string $query, array $bindings = []) * @method static int transactionLevel() * @method static int update(string $query, array $bindings = []) * @method static mixed selectOne(string $query, array $bindings = [], bool $useReadPdo = true) * @method static mixed transaction(\Closure $callback, int $attempts = 1) * @method static string getDefaultConnection() * @method static void beginTransaction() * @method static void commit() * @method static void listen(\Closure $callback) * @method static void rollBack(int $toLevel = null) * @method static void setDefaultConnection(string $name) * * @see \Illuminate\Database\DatabaseManager * @see \Illuminate\Database\Connection */ class DB extends Facade { /** * Get the registered name of the component. * * @return string */ protected static function getFacadeAccessor() { return 'db'; } }
Upload File
Create Folder