├── README.md ├── application ├── .htaccess ├── cache │ ├── .htaccess │ └── index.html ├── config │ ├── autoload.php │ ├── config.php │ ├── constants.php │ ├── database.php │ ├── doctypes.php │ ├── foreign_chars.php │ ├── hooks.php │ ├── index.html │ ├── migration.php │ ├── mimes.php │ ├── profiler.php │ ├── routes.php │ ├── smileys.php │ └── user_agents.php ├── controllers │ ├── index.html │ └── welcome.php ├── core │ └── index.html ├── errors │ ├── error_404.php │ ├── error_db.php │ ├── error_general.php │ ├── error_php.php │ └── index.html ├── helpers │ └── index.html ├── hooks │ └── index.html ├── index.html ├── language │ ├── english │ │ └── index.html │ └── index.html ├── libraries │ └── index.html ├── logs │ └── index.html ├── models │ ├── Article.php │ └── index.html ├── third_party │ ├── eloquent.php │ └── index.html └── views │ ├── home.php │ ├── index.html │ └── welcome_message.php ├── composer.json ├── composer.lock ├── index.php ├── system ├── .htaccess ├── core │ ├── Benchmark.php │ ├── CodeIgniter.php │ ├── Common.php │ ├── Config.php │ ├── Controller.php │ ├── Exceptions.php │ ├── Hooks.php │ ├── Input.php │ ├── Lang.php │ ├── Loader.php │ ├── Model.php │ ├── Output.php │ ├── Router.php │ ├── Security.php │ ├── URI.php │ ├── Utf8.php │ └── index.html ├── database │ ├── DB.php │ ├── DB_active_rec.php │ ├── DB_cache.php │ ├── DB_driver.php │ ├── DB_forge.php │ ├── DB_result.php │ ├── DB_utility.php │ ├── drivers │ │ ├── cubrid │ │ │ ├── cubrid_driver.php │ │ │ ├── cubrid_forge.php │ │ │ ├── cubrid_result.php │ │ │ ├── cubrid_utility.php │ │ │ └── index.html │ │ ├── index.html │ │ ├── mssql │ │ │ ├── index.html │ │ │ ├── mssql_driver.php │ │ │ ├── mssql_forge.php │ │ │ ├── mssql_result.php │ │ │ └── mssql_utility.php │ │ ├── mysql │ │ │ ├── index.html │ │ │ ├── mysql_driver.php │ │ │ ├── mysql_forge.php │ │ │ ├── mysql_result.php │ │ │ └── mysql_utility.php │ │ ├── mysqli │ │ │ ├── index.html │ │ │ ├── mysqli_driver.php │ │ │ ├── mysqli_forge.php │ │ │ ├── mysqli_result.php │ │ │ └── mysqli_utility.php │ │ ├── oci8 │ │ │ ├── index.html │ │ │ ├── oci8_driver.php │ │ │ ├── oci8_forge.php │ │ │ ├── oci8_result.php │ │ │ └── oci8_utility.php │ │ ├── odbc │ │ │ ├── index.html │ │ │ ├── odbc_driver.php │ │ │ ├── odbc_forge.php │ │ │ ├── odbc_result.php │ │ │ └── odbc_utility.php │ │ ├── pdo │ │ │ ├── index.html │ │ │ ├── pdo_driver.php │ │ │ ├── pdo_forge.php │ │ │ ├── pdo_result.php │ │ │ └── pdo_utility.php │ │ ├── postgre │ │ │ ├── index.html │ │ │ ├── postgre_driver.php │ │ │ ├── postgre_forge.php │ │ │ ├── postgre_result.php │ │ │ └── postgre_utility.php │ │ ├── sqlite │ │ │ ├── index.html │ │ │ ├── sqlite_driver.php │ │ │ ├── sqlite_forge.php │ │ │ ├── sqlite_result.php │ │ │ └── sqlite_utility.php │ │ └── sqlsrv │ │ │ ├── index.html │ │ │ ├── sqlsrv_driver.php │ │ │ ├── sqlsrv_forge.php │ │ │ ├── sqlsrv_result.php │ │ │ └── sqlsrv_utility.php │ └── index.html ├── fonts │ ├── index.html │ └── texb.ttf ├── helpers │ ├── array_helper.php │ ├── captcha_helper.php │ ├── cookie_helper.php │ ├── date_helper.php │ ├── directory_helper.php │ ├── download_helper.php │ ├── email_helper.php │ ├── file_helper.php │ ├── form_helper.php │ ├── html_helper.php │ ├── index.html │ ├── inflector_helper.php │ ├── language_helper.php │ ├── number_helper.php │ ├── path_helper.php │ ├── security_helper.php │ ├── smiley_helper.php │ ├── string_helper.php │ ├── text_helper.php │ ├── typography_helper.php │ ├── url_helper.php │ └── xml_helper.php ├── index.html ├── language │ ├── english │ │ ├── calendar_lang.php │ │ ├── date_lang.php │ │ ├── db_lang.php │ │ ├── email_lang.php │ │ ├── form_validation_lang.php │ │ ├── ftp_lang.php │ │ ├── imglib_lang.php │ │ ├── index.html │ │ ├── migration_lang.php │ │ ├── number_lang.php │ │ ├── profiler_lang.php │ │ ├── unit_test_lang.php │ │ └── upload_lang.php │ └── index.html └── libraries │ ├── Cache │ ├── Cache.php │ ├── drivers │ │ ├── Cache_apc.php │ │ ├── Cache_dummy.php │ │ ├── Cache_file.php │ │ ├── Cache_memcached.php │ │ └── index.html │ └── index.html │ ├── Calendar.php │ ├── Cart.php │ ├── Driver.php │ ├── Email.php │ ├── Encrypt.php │ ├── Form_validation.php │ ├── Ftp.php │ ├── Image_lib.php │ ├── Javascript.php │ ├── Log.php │ ├── Migration.php │ ├── Pagination.php │ ├── Parser.php │ ├── Profiler.php │ ├── Session.php │ ├── Sha1.php │ ├── Table.php │ ├── Trackback.php │ ├── Typography.php │ ├── Unit_test.php │ ├── Upload.php │ ├── User_agent.php │ ├── Xmlrpc.php │ ├── Xmlrpcs.php │ ├── Zip.php │ ├── index.html │ └── javascript │ ├── Jquery.php │ └── index.html └── vendor ├── autoload.php ├── composer ├── ClassLoader.php ├── autoload_classmap.php ├── autoload_files.php ├── autoload_namespaces.php ├── autoload_psr4.php ├── autoload_real.php └── installed.json ├── illuminate ├── container │ └── Illuminate │ │ └── Container │ │ ├── BindingResolutionException.php │ │ ├── Container.php │ │ └── composer.json ├── database │ └── Illuminate │ │ └── Database │ │ ├── Capsule │ │ └── Manager.php │ │ ├── Connection.php │ │ ├── ConnectionInterface.php │ │ ├── ConnectionResolver.php │ │ ├── ConnectionResolverInterface.php │ │ ├── Connectors │ │ ├── ConnectionFactory.php │ │ ├── Connector.php │ │ ├── ConnectorInterface.php │ │ ├── MySqlConnector.php │ │ ├── PostgresConnector.php │ │ ├── SQLiteConnector.php │ │ └── SqlServerConnector.php │ │ ├── Console │ │ ├── Migrations │ │ │ ├── BaseCommand.php │ │ │ ├── InstallCommand.php │ │ │ ├── MigrateCommand.php │ │ │ ├── MigrateMakeCommand.php │ │ │ ├── RefreshCommand.php │ │ │ ├── ResetCommand.php │ │ │ └── RollbackCommand.php │ │ └── SeedCommand.php │ │ ├── DatabaseManager.php │ │ ├── DatabaseServiceProvider.php │ │ ├── Eloquent │ │ ├── Builder.php │ │ ├── Collection.php │ │ ├── MassAssignmentException.php │ │ ├── Model.php │ │ ├── ModelNotFoundException.php │ │ ├── Relations │ │ │ ├── BelongsTo.php │ │ │ ├── BelongsToMany.php │ │ │ ├── HasMany.php │ │ │ ├── HasManyThrough.php │ │ │ ├── HasOne.php │ │ │ ├── HasOneOrMany.php │ │ │ ├── MorphMany.php │ │ │ ├── MorphOne.php │ │ │ ├── MorphOneOrMany.php │ │ │ ├── MorphPivot.php │ │ │ ├── MorphTo.php │ │ │ ├── MorphToMany.php │ │ │ ├── Pivot.php │ │ │ └── Relation.php │ │ ├── ScopeInterface.php │ │ ├── SoftDeletingScope.php │ │ └── SoftDeletingTrait.php │ │ ├── Grammar.php │ │ ├── MigrationServiceProvider.php │ │ ├── Migrations │ │ ├── DatabaseMigrationRepository.php │ │ ├── Migration.php │ │ ├── MigrationCreator.php │ │ ├── MigrationRepositoryInterface.php │ │ ├── Migrator.php │ │ └── stubs │ │ │ ├── blank.stub │ │ │ ├── create.stub │ │ │ └── update.stub │ │ ├── MySqlConnection.php │ │ ├── PostgresConnection.php │ │ ├── Query │ │ ├── Builder.php │ │ ├── Expression.php │ │ ├── Grammars │ │ │ ├── Grammar.php │ │ │ ├── MySqlGrammar.php │ │ │ ├── PostgresGrammar.php │ │ │ ├── SQLiteGrammar.php │ │ │ └── SqlServerGrammar.php │ │ ├── JoinClause.php │ │ └── Processors │ │ │ ├── MySqlProcessor.php │ │ │ ├── PostgresProcessor.php │ │ │ ├── Processor.php │ │ │ ├── SQLiteProcessor.php │ │ │ └── SqlServerProcessor.php │ │ ├── QueryException.php │ │ ├── README.md │ │ ├── SQLiteConnection.php │ │ ├── Schema │ │ ├── Blueprint.php │ │ ├── Builder.php │ │ ├── Grammars │ │ │ ├── Grammar.php │ │ │ ├── MySqlGrammar.php │ │ │ ├── PostgresGrammar.php │ │ │ ├── SQLiteGrammar.php │ │ │ └── SqlServerGrammar.php │ │ └── MySqlBuilder.php │ │ ├── SeedServiceProvider.php │ │ ├── Seeder.php │ │ ├── SqlServerConnection.php │ │ └── composer.json ├── events │ └── Illuminate │ │ └── Events │ │ ├── Dispatcher.php │ │ ├── EventServiceProvider.php │ │ └── composer.json └── support │ └── Illuminate │ └── Support │ ├── Arr.php │ ├── ClassLoader.php │ ├── Collection.php │ ├── Contracts │ ├── ArrayableInterface.php │ ├── JsonableInterface.php │ ├── MessageProviderInterface.php │ ├── RenderableInterface.php │ └── ResponsePreparerInterface.php │ ├── Facades │ ├── App.php │ ├── Artisan.php │ ├── Auth.php │ ├── Blade.php │ ├── Cache.php │ ├── Config.php │ ├── Cookie.php │ ├── Crypt.php │ ├── DB.php │ ├── Event.php │ ├── Facade.php │ ├── File.php │ ├── Form.php │ ├── HTML.php │ ├── Hash.php │ ├── Input.php │ ├── Lang.php │ ├── Log.php │ ├── Mail.php │ ├── Paginator.php │ ├── Password.php │ ├── Queue.php │ ├── Redirect.php │ ├── Redis.php │ ├── Request.php │ ├── Response.php │ ├── Route.php │ ├── SSH.php │ ├── Schema.php │ ├── Session.php │ ├── URL.php │ ├── Validator.php │ └── View.php │ ├── Fluent.php │ ├── Manager.php │ ├── MessageBag.php │ ├── NamespacedItemResolver.php │ ├── Pluralizer.php │ ├── SerializableClosure.php │ ├── ServiceProvider.php │ ├── Str.php │ ├── Traits │ ├── CapsuleManagerTrait.php │ └── MacroableTrait.php │ ├── ViewErrorBag.php │ ├── composer.json │ └── helpers.php └── nesbot └── carbon ├── .editorconfig ├── LICENSE ├── composer.json ├── history.md ├── phpunit.xml.dist ├── readme.md ├── src └── Carbon │ └── Carbon.php └── tests ├── AddTest.php ├── ComparisonTest.php ├── ConstructTest.php ├── CopyTest.php ├── CreateFromDateTest.php ├── CreateFromFormatTest.php ├── CreateFromTimeTest.php ├── CreateFromTimestampTest.php ├── CreateTest.php ├── DayOfWeekModifiersTest.php ├── DiffTest.php ├── FluidSettersTest.php ├── GettersTest.php ├── InstanceTest.php ├── IsTest.php ├── IssetTest.php ├── NowAndOtherStaticHelpersTest.php ├── SettersTest.php ├── StartEndOfTest.php ├── StringsTest.php ├── SubTest.php ├── TestFixture.php └── TestingAidsTest.php /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/README.md -------------------------------------------------------------------------------- /application/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /application/cache/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /application/cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/application/cache/index.html -------------------------------------------------------------------------------- /application/config/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/application/config/autoload.php -------------------------------------------------------------------------------- /application/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/application/config/config.php -------------------------------------------------------------------------------- /application/config/constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/application/config/constants.php -------------------------------------------------------------------------------- /application/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/application/config/database.php -------------------------------------------------------------------------------- /application/config/doctypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/application/config/doctypes.php -------------------------------------------------------------------------------- /application/config/foreign_chars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/application/config/foreign_chars.php -------------------------------------------------------------------------------- /application/config/hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/application/config/hooks.php -------------------------------------------------------------------------------- /application/config/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/application/config/index.html -------------------------------------------------------------------------------- /application/config/migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/application/config/migration.php -------------------------------------------------------------------------------- /application/config/mimes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/application/config/mimes.php -------------------------------------------------------------------------------- /application/config/profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/application/config/profiler.php -------------------------------------------------------------------------------- /application/config/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/application/config/routes.php -------------------------------------------------------------------------------- /application/config/smileys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/application/config/smileys.php -------------------------------------------------------------------------------- /application/config/user_agents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/application/config/user_agents.php -------------------------------------------------------------------------------- /application/controllers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/application/controllers/index.html -------------------------------------------------------------------------------- /application/controllers/welcome.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/application/controllers/welcome.php -------------------------------------------------------------------------------- /application/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/application/core/index.html -------------------------------------------------------------------------------- /application/errors/error_404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/application/errors/error_404.php -------------------------------------------------------------------------------- /application/errors/error_db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/application/errors/error_db.php -------------------------------------------------------------------------------- /application/errors/error_general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/application/errors/error_general.php -------------------------------------------------------------------------------- /application/errors/error_php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/application/errors/error_php.php -------------------------------------------------------------------------------- /application/errors/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/application/errors/index.html -------------------------------------------------------------------------------- /application/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/application/helpers/index.html -------------------------------------------------------------------------------- /application/hooks/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/application/hooks/index.html -------------------------------------------------------------------------------- /application/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/application/index.html -------------------------------------------------------------------------------- /application/language/english/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/application/language/english/index.html -------------------------------------------------------------------------------- /application/language/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/application/language/index.html -------------------------------------------------------------------------------- /application/libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/application/libraries/index.html -------------------------------------------------------------------------------- /application/logs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/application/logs/index.html -------------------------------------------------------------------------------- /application/models/Article.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/application/models/Article.php -------------------------------------------------------------------------------- /application/models/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/application/models/index.html -------------------------------------------------------------------------------- /application/third_party/eloquent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/application/third_party/eloquent.php -------------------------------------------------------------------------------- /application/third_party/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/application/third_party/index.html -------------------------------------------------------------------------------- /application/views/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/application/views/home.php -------------------------------------------------------------------------------- /application/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/application/views/index.html -------------------------------------------------------------------------------- /application/views/welcome_message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/application/views/welcome_message.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/composer.lock -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/index.php -------------------------------------------------------------------------------- /system/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /system/core/Benchmark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/core/Benchmark.php -------------------------------------------------------------------------------- /system/core/CodeIgniter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/core/CodeIgniter.php -------------------------------------------------------------------------------- /system/core/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/core/Common.php -------------------------------------------------------------------------------- /system/core/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/core/Config.php -------------------------------------------------------------------------------- /system/core/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/core/Controller.php -------------------------------------------------------------------------------- /system/core/Exceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/core/Exceptions.php -------------------------------------------------------------------------------- /system/core/Hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/core/Hooks.php -------------------------------------------------------------------------------- /system/core/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/core/Input.php -------------------------------------------------------------------------------- /system/core/Lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/core/Lang.php -------------------------------------------------------------------------------- /system/core/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/core/Loader.php -------------------------------------------------------------------------------- /system/core/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/core/Model.php -------------------------------------------------------------------------------- /system/core/Output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/core/Output.php -------------------------------------------------------------------------------- /system/core/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/core/Router.php -------------------------------------------------------------------------------- /system/core/Security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/core/Security.php -------------------------------------------------------------------------------- /system/core/URI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/core/URI.php -------------------------------------------------------------------------------- /system/core/Utf8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/core/Utf8.php -------------------------------------------------------------------------------- /system/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/core/index.html -------------------------------------------------------------------------------- /system/database/DB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/DB.php -------------------------------------------------------------------------------- /system/database/DB_active_rec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/DB_active_rec.php -------------------------------------------------------------------------------- /system/database/DB_cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/DB_cache.php -------------------------------------------------------------------------------- /system/database/DB_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/DB_driver.php -------------------------------------------------------------------------------- /system/database/DB_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/DB_forge.php -------------------------------------------------------------------------------- /system/database/DB_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/DB_result.php -------------------------------------------------------------------------------- /system/database/DB_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/DB_utility.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/cubrid_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/cubrid/cubrid_driver.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/cubrid_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/cubrid/cubrid_forge.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/cubrid_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/cubrid/cubrid_result.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/cubrid_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/cubrid/cubrid_utility.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/cubrid/index.html -------------------------------------------------------------------------------- /system/database/drivers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/index.html -------------------------------------------------------------------------------- /system/database/drivers/mssql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/mssql/index.html -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/mssql/mssql_driver.php -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/mssql/mssql_forge.php -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/mssql/mssql_result.php -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/mssql/mssql_utility.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/mysql/index.html -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/mysql/mysql_driver.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/mysql/mysql_forge.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/mysql/mysql_result.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/mysql/mysql_utility.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/mysqli/index.html -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/mysqli/mysqli_driver.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/mysqli/mysqli_forge.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/mysqli/mysqli_result.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/mysqli/mysqli_utility.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/oci8/index.html -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/oci8/oci8_driver.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/oci8/oci8_forge.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/oci8/oci8_result.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/oci8/oci8_utility.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/odbc/index.html -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/odbc/odbc_driver.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/odbc/odbc_forge.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/odbc/odbc_result.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/odbc/odbc_utility.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/pdo/index.html -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/pdo/pdo_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/pdo/pdo_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/pdo/pdo_result.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/pdo/pdo_utility.php -------------------------------------------------------------------------------- /system/database/drivers/postgre/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/postgre/index.html -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/postgre/postgre_driver.php -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/postgre/postgre_forge.php -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/postgre/postgre_result.php -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/postgre/postgre_utility.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/sqlite/index.html -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/sqlite/sqlite_driver.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/sqlite/sqlite_forge.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/sqlite/sqlite_result.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/sqlite/sqlite_utility.php -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/sqlsrv/index.html -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/sqlsrv_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/sqlsrv/sqlsrv_driver.php -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/sqlsrv_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/sqlsrv/sqlsrv_forge.php -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/sqlsrv_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/sqlsrv/sqlsrv_result.php -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/sqlsrv_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/drivers/sqlsrv/sqlsrv_utility.php -------------------------------------------------------------------------------- /system/database/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/database/index.html -------------------------------------------------------------------------------- /system/fonts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/fonts/index.html -------------------------------------------------------------------------------- /system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/fonts/texb.ttf -------------------------------------------------------------------------------- /system/helpers/array_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/helpers/array_helper.php -------------------------------------------------------------------------------- /system/helpers/captcha_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/helpers/captcha_helper.php -------------------------------------------------------------------------------- /system/helpers/cookie_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/helpers/cookie_helper.php -------------------------------------------------------------------------------- /system/helpers/date_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/helpers/date_helper.php -------------------------------------------------------------------------------- /system/helpers/directory_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/helpers/directory_helper.php -------------------------------------------------------------------------------- /system/helpers/download_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/helpers/download_helper.php -------------------------------------------------------------------------------- /system/helpers/email_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/helpers/email_helper.php -------------------------------------------------------------------------------- /system/helpers/file_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/helpers/file_helper.php -------------------------------------------------------------------------------- /system/helpers/form_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/helpers/form_helper.php -------------------------------------------------------------------------------- /system/helpers/html_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/helpers/html_helper.php -------------------------------------------------------------------------------- /system/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/helpers/index.html -------------------------------------------------------------------------------- /system/helpers/inflector_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/helpers/inflector_helper.php -------------------------------------------------------------------------------- /system/helpers/language_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/helpers/language_helper.php -------------------------------------------------------------------------------- /system/helpers/number_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/helpers/number_helper.php -------------------------------------------------------------------------------- /system/helpers/path_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/helpers/path_helper.php -------------------------------------------------------------------------------- /system/helpers/security_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/helpers/security_helper.php -------------------------------------------------------------------------------- /system/helpers/smiley_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/helpers/smiley_helper.php -------------------------------------------------------------------------------- /system/helpers/string_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/helpers/string_helper.php -------------------------------------------------------------------------------- /system/helpers/text_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/helpers/text_helper.php -------------------------------------------------------------------------------- /system/helpers/typography_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/helpers/typography_helper.php -------------------------------------------------------------------------------- /system/helpers/url_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/helpers/url_helper.php -------------------------------------------------------------------------------- /system/helpers/xml_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/helpers/xml_helper.php -------------------------------------------------------------------------------- /system/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/index.html -------------------------------------------------------------------------------- /system/language/english/calendar_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/language/english/calendar_lang.php -------------------------------------------------------------------------------- /system/language/english/date_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/language/english/date_lang.php -------------------------------------------------------------------------------- /system/language/english/db_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/language/english/db_lang.php -------------------------------------------------------------------------------- /system/language/english/email_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/language/english/email_lang.php -------------------------------------------------------------------------------- /system/language/english/form_validation_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/language/english/form_validation_lang.php -------------------------------------------------------------------------------- /system/language/english/ftp_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/language/english/ftp_lang.php -------------------------------------------------------------------------------- /system/language/english/imglib_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/language/english/imglib_lang.php -------------------------------------------------------------------------------- /system/language/english/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/language/english/index.html -------------------------------------------------------------------------------- /system/language/english/migration_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/language/english/migration_lang.php -------------------------------------------------------------------------------- /system/language/english/number_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/language/english/number_lang.php -------------------------------------------------------------------------------- /system/language/english/profiler_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/language/english/profiler_lang.php -------------------------------------------------------------------------------- /system/language/english/unit_test_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/language/english/unit_test_lang.php -------------------------------------------------------------------------------- /system/language/english/upload_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/language/english/upload_lang.php -------------------------------------------------------------------------------- /system/language/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/language/index.html -------------------------------------------------------------------------------- /system/libraries/Cache/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/libraries/Cache/Cache.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_apc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/libraries/Cache/drivers/Cache_apc.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_dummy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/libraries/Cache/drivers/Cache_dummy.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/libraries/Cache/drivers/Cache_file.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_memcached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/libraries/Cache/drivers/Cache_memcached.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/libraries/Cache/drivers/index.html -------------------------------------------------------------------------------- /system/libraries/Cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/libraries/Cache/index.html -------------------------------------------------------------------------------- /system/libraries/Calendar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/libraries/Calendar.php -------------------------------------------------------------------------------- /system/libraries/Cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/libraries/Cart.php -------------------------------------------------------------------------------- /system/libraries/Driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/libraries/Driver.php -------------------------------------------------------------------------------- /system/libraries/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/libraries/Email.php -------------------------------------------------------------------------------- /system/libraries/Encrypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/libraries/Encrypt.php -------------------------------------------------------------------------------- /system/libraries/Form_validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/libraries/Form_validation.php -------------------------------------------------------------------------------- /system/libraries/Ftp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/libraries/Ftp.php -------------------------------------------------------------------------------- /system/libraries/Image_lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/libraries/Image_lib.php -------------------------------------------------------------------------------- /system/libraries/Javascript.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/libraries/Javascript.php -------------------------------------------------------------------------------- /system/libraries/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/libraries/Log.php -------------------------------------------------------------------------------- /system/libraries/Migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/libraries/Migration.php -------------------------------------------------------------------------------- /system/libraries/Pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/libraries/Pagination.php -------------------------------------------------------------------------------- /system/libraries/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/libraries/Parser.php -------------------------------------------------------------------------------- /system/libraries/Profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/libraries/Profiler.php -------------------------------------------------------------------------------- /system/libraries/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/libraries/Session.php -------------------------------------------------------------------------------- /system/libraries/Sha1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/libraries/Sha1.php -------------------------------------------------------------------------------- /system/libraries/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/libraries/Table.php -------------------------------------------------------------------------------- /system/libraries/Trackback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/libraries/Trackback.php -------------------------------------------------------------------------------- /system/libraries/Typography.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/libraries/Typography.php -------------------------------------------------------------------------------- /system/libraries/Unit_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/libraries/Unit_test.php -------------------------------------------------------------------------------- /system/libraries/Upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/libraries/Upload.php -------------------------------------------------------------------------------- /system/libraries/User_agent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/libraries/User_agent.php -------------------------------------------------------------------------------- /system/libraries/Xmlrpc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/libraries/Xmlrpc.php -------------------------------------------------------------------------------- /system/libraries/Xmlrpcs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/libraries/Xmlrpcs.php -------------------------------------------------------------------------------- /system/libraries/Zip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/libraries/Zip.php -------------------------------------------------------------------------------- /system/libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/libraries/index.html -------------------------------------------------------------------------------- /system/libraries/javascript/Jquery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/libraries/javascript/Jquery.php -------------------------------------------------------------------------------- /system/libraries/javascript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/system/libraries/javascript/index.html -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/autoload.php -------------------------------------------------------------------------------- /vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/composer/autoload_files.php -------------------------------------------------------------------------------- /vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/composer/installed.json -------------------------------------------------------------------------------- /vendor/illuminate/container/Illuminate/Container/BindingResolutionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/container/Illuminate/Container/BindingResolutionException.php -------------------------------------------------------------------------------- /vendor/illuminate/container/Illuminate/Container/Container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/container/Illuminate/Container/Container.php -------------------------------------------------------------------------------- /vendor/illuminate/container/Illuminate/Container/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/container/Illuminate/Container/composer.json -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Capsule/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Capsule/Manager.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Connection.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/ConnectionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/ConnectionInterface.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/ConnectionResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/ConnectionResolver.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/ConnectionResolverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/ConnectionResolverInterface.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Connectors/ConnectionFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Connectors/ConnectionFactory.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Connectors/Connector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Connectors/Connector.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Connectors/ConnectorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Connectors/ConnectorInterface.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Connectors/MySqlConnector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Connectors/MySqlConnector.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Connectors/PostgresConnector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Connectors/PostgresConnector.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Connectors/SQLiteConnector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Connectors/SQLiteConnector.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Connectors/SqlServerConnector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Connectors/SqlServerConnector.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Console/Migrations/BaseCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Console/Migrations/BaseCommand.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Console/Migrations/InstallCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Console/Migrations/InstallCommand.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Console/Migrations/MigrateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Console/Migrations/MigrateCommand.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Console/Migrations/MigrateMakeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Console/Migrations/MigrateMakeCommand.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Console/Migrations/RefreshCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Console/Migrations/RefreshCommand.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Console/Migrations/ResetCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Console/Migrations/ResetCommand.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Console/Migrations/RollbackCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Console/Migrations/RollbackCommand.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Console/SeedCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Console/SeedCommand.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/DatabaseManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/DatabaseManager.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/DatabaseServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/DatabaseServiceProvider.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Eloquent/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Eloquent/Builder.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Eloquent/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Eloquent/Collection.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Eloquent/MassAssignmentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Eloquent/MassAssignmentException.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Eloquent/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Eloquent/Model.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Eloquent/ModelNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Eloquent/ModelNotFoundException.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Eloquent/Relations/BelongsTo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Eloquent/Relations/BelongsTo.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Eloquent/Relations/BelongsToMany.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Eloquent/Relations/BelongsToMany.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Eloquent/Relations/HasMany.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Eloquent/Relations/HasMany.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Eloquent/Relations/HasManyThrough.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Eloquent/Relations/HasManyThrough.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Eloquent/Relations/HasOne.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Eloquent/Relations/HasOne.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Eloquent/Relations/HasOneOrMany.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Eloquent/Relations/HasOneOrMany.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Eloquent/Relations/MorphMany.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Eloquent/Relations/MorphMany.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Eloquent/Relations/MorphOne.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Eloquent/Relations/MorphOne.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Eloquent/Relations/MorphOneOrMany.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Eloquent/Relations/MorphOneOrMany.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Eloquent/Relations/MorphPivot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Eloquent/Relations/MorphPivot.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Eloquent/Relations/MorphTo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Eloquent/Relations/MorphTo.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Eloquent/Relations/MorphToMany.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Eloquent/Relations/MorphToMany.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Eloquent/Relations/Pivot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Eloquent/Relations/Pivot.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Eloquent/Relations/Relation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Eloquent/Relations/Relation.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Eloquent/ScopeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Eloquent/ScopeInterface.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Eloquent/SoftDeletingScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Eloquent/SoftDeletingScope.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Eloquent/SoftDeletingTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Eloquent/SoftDeletingTrait.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Grammar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Grammar.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/MigrationServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/MigrationServiceProvider.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Migrations/DatabaseMigrationRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Migrations/DatabaseMigrationRepository.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Migrations/Migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Migrations/Migration.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Migrations/MigrationCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Migrations/MigrationCreator.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Migrations/MigrationRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Migrations/MigrationRepositoryInterface.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Migrations/Migrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Migrations/Migrator.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Migrations/stubs/blank.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Migrations/stubs/blank.stub -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Migrations/stubs/create.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Migrations/stubs/create.stub -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Migrations/stubs/update.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Migrations/stubs/update.stub -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/MySqlConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/MySqlConnection.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/PostgresConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/PostgresConnection.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Query/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Query/Builder.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Query/Expression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Query/Expression.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Query/Grammars/Grammar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Query/Grammars/Grammar.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Query/Grammars/MySqlGrammar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Query/Grammars/MySqlGrammar.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Query/Grammars/PostgresGrammar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Query/Grammars/PostgresGrammar.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Query/Grammars/SQLiteGrammar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Query/Grammars/SQLiteGrammar.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Query/Grammars/SqlServerGrammar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Query/Grammars/SqlServerGrammar.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Query/JoinClause.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Query/JoinClause.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Query/Processors/MySqlProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Query/Processors/MySqlProcessor.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Query/Processors/PostgresProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Query/Processors/PostgresProcessor.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Query/Processors/Processor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Query/Processors/Processor.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Query/Processors/SQLiteProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Query/Processors/SQLiteProcessor.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Query/Processors/SqlServerProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Query/Processors/SqlServerProcessor.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/QueryException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/QueryException.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/README.md -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/SQLiteConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/SQLiteConnection.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Schema/Blueprint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Schema/Blueprint.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Schema/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Schema/Builder.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Schema/Grammars/Grammar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Schema/Grammars/Grammar.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Schema/Grammars/MySqlGrammar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Schema/Grammars/MySqlGrammar.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Schema/Grammars/PostgresGrammar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Schema/Grammars/PostgresGrammar.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Schema/Grammars/SQLiteGrammar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Schema/Grammars/SQLiteGrammar.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Schema/Grammars/SqlServerGrammar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Schema/Grammars/SqlServerGrammar.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Schema/MySqlBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Schema/MySqlBuilder.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/SeedServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/SeedServiceProvider.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/Seeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/Seeder.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/SqlServerConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/SqlServerConnection.php -------------------------------------------------------------------------------- /vendor/illuminate/database/Illuminate/Database/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/database/Illuminate/Database/composer.json -------------------------------------------------------------------------------- /vendor/illuminate/events/Illuminate/Events/Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/events/Illuminate/Events/Dispatcher.php -------------------------------------------------------------------------------- /vendor/illuminate/events/Illuminate/Events/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/events/Illuminate/Events/EventServiceProvider.php -------------------------------------------------------------------------------- /vendor/illuminate/events/Illuminate/Events/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/events/Illuminate/Events/composer.json -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/Arr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/Arr.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/ClassLoader.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/Collection.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/Contracts/ArrayableInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/Contracts/ArrayableInterface.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/Contracts/JsonableInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/Contracts/JsonableInterface.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/Contracts/MessageProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/Contracts/MessageProviderInterface.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/Contracts/RenderableInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/Contracts/RenderableInterface.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/Contracts/ResponsePreparerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/Contracts/ResponsePreparerInterface.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/Facades/App.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/Facades/App.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/Facades/Artisan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/Facades/Artisan.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/Facades/Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/Facades/Auth.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/Facades/Blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/Facades/Blade.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/Facades/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/Facades/Cache.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/Facades/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/Facades/Config.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/Facades/Cookie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/Facades/Cookie.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/Facades/Crypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/Facades/Crypt.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/Facades/DB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/Facades/DB.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/Facades/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/Facades/Event.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/Facades/Facade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/Facades/Facade.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/Facades/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/Facades/File.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/Facades/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/Facades/Form.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/Facades/HTML.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/Facades/HTML.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/Facades/Hash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/Facades/Hash.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/Facades/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/Facades/Input.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/Facades/Lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/Facades/Lang.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/Facades/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/Facades/Log.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/Facades/Mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/Facades/Mail.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/Facades/Paginator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/Facades/Paginator.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/Facades/Password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/Facades/Password.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/Facades/Queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/Facades/Queue.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/Facades/Redirect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/Facades/Redirect.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/Facades/Redis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/Facades/Redis.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/Facades/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/Facades/Request.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/Facades/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/Facades/Response.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/Facades/Route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/Facades/Route.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/Facades/SSH.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/Facades/SSH.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/Facades/Schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/Facades/Schema.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/Facades/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/Facades/Session.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/Facades/URL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/Facades/URL.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/Facades/Validator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/Facades/Validator.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/Facades/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/Facades/View.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/Fluent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/Fluent.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/Manager.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/MessageBag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/MessageBag.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/NamespacedItemResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/NamespacedItemResolver.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/Pluralizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/Pluralizer.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/SerializableClosure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/SerializableClosure.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/ServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/ServiceProvider.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/Str.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/Str.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/Traits/CapsuleManagerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/Traits/CapsuleManagerTrait.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/Traits/MacroableTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/Traits/MacroableTrait.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/ViewErrorBag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/ViewErrorBag.php -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/composer.json -------------------------------------------------------------------------------- /vendor/illuminate/support/Illuminate/Support/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/illuminate/support/Illuminate/Support/helpers.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/nesbot/carbon/.editorconfig -------------------------------------------------------------------------------- /vendor/nesbot/carbon/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/nesbot/carbon/LICENSE -------------------------------------------------------------------------------- /vendor/nesbot/carbon/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/nesbot/carbon/composer.json -------------------------------------------------------------------------------- /vendor/nesbot/carbon/history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/nesbot/carbon/history.md -------------------------------------------------------------------------------- /vendor/nesbot/carbon/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/nesbot/carbon/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/nesbot/carbon/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/nesbot/carbon/readme.md -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Carbon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/nesbot/carbon/src/Carbon/Carbon.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/tests/AddTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/nesbot/carbon/tests/AddTest.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/tests/ComparisonTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/nesbot/carbon/tests/ComparisonTest.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/tests/ConstructTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/nesbot/carbon/tests/ConstructTest.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/tests/CopyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/nesbot/carbon/tests/CopyTest.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/tests/CreateFromDateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/nesbot/carbon/tests/CreateFromDateTest.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/tests/CreateFromFormatTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/nesbot/carbon/tests/CreateFromFormatTest.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/tests/CreateFromTimeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/nesbot/carbon/tests/CreateFromTimeTest.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/tests/CreateFromTimestampTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/nesbot/carbon/tests/CreateFromTimestampTest.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/tests/CreateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/nesbot/carbon/tests/CreateTest.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/tests/DayOfWeekModifiersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/nesbot/carbon/tests/DayOfWeekModifiersTest.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/tests/DiffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/nesbot/carbon/tests/DiffTest.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/tests/FluidSettersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/nesbot/carbon/tests/FluidSettersTest.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/tests/GettersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/nesbot/carbon/tests/GettersTest.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/tests/InstanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/nesbot/carbon/tests/InstanceTest.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/tests/IsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/nesbot/carbon/tests/IsTest.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/tests/IssetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/nesbot/carbon/tests/IssetTest.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/tests/NowAndOtherStaticHelpersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/nesbot/carbon/tests/NowAndOtherStaticHelpersTest.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/tests/SettersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/nesbot/carbon/tests/SettersTest.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/tests/StartEndOfTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/nesbot/carbon/tests/StartEndOfTest.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/tests/StringsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/nesbot/carbon/tests/StringsTest.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/tests/SubTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/nesbot/carbon/tests/SubTest.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/tests/TestFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/nesbot/carbon/tests/TestFixture.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/tests/TestingAidsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnlui/CodeIgniter-2-with-Eloquent/HEAD/vendor/nesbot/carbon/tests/TestingAidsTest.php --------------------------------------------------------------------------------