├── .editorconfig ├── .env.example ├── .gitattributes ├── .github └── workflows │ └── laravel.yml ├── .gitignore ├── .styleci.yml ├── README.md ├── app ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ └── Controller.php │ ├── Kernel.php │ └── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php ├── Models │ ├── Category.php │ ├── Company.php │ ├── Country.php │ ├── Product.php │ ├── Project.php │ ├── Task.php │ ├── User.php │ └── Visitor.php └── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── filesystems.php ├── hashing.php ├── logging.php ├── mail.php ├── queue.php ├── sanctum.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ ├── CategoryFactory.php │ ├── ProductFactory.php │ ├── ProjectFactory.php │ └── UserFactory.php ├── migrations │ ├── task1 │ │ ├── 2014_10_12_000000_create_users_table.php │ │ ├── 2021_11_08_091231_create_tasks_table.php │ │ └── 2021_11_08_092943_create_comments_table.php │ ├── task10 │ │ ├── 2021_11_09_090752_create_countries_table.php │ │ └── 2021_11_09_090858_create_visitors_table.php │ ├── task2 │ │ ├── 2021_11_09_075914_create_new_users_table.php │ │ └── 2021_11_09_075928_add_surname_to_users_table.php │ ├── task3 │ │ └── 2021_11_09_080955_create_projects_table.php │ ├── task4 │ │ ├── 2021_11_09_082155_create_categories_table.php │ │ └── 2021_11_09_082205_create_products_table.php │ ├── task5 │ │ ├── 2021_11_09_083051_create_another_users_table.php │ │ ├── 2021_11_09_083121_update_users_table.php │ │ └── 2021_11_09_083225_recreate_users_table.php │ ├── task6 │ │ └── 2021_11_09_083843_create_companies_table.php │ ├── task7 │ │ └── 2021_11_09_084922_create_new_companies_table.php │ ├── task8 │ │ ├── 2021_11_09_085417_create_company_table.php │ │ └── 2021_11_09_085453_rename_companies_table.php │ └── task9 │ │ ├── 2021_11_09_090003_create_another_companies_table.php │ │ └── 2021_11_09_090018_rename_name_in_companies_table.php └── seeders │ └── DatabaseSeeder.php ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── favicon.ico ├── index.php ├── robots.txt └── web.config ├── resources ├── css │ └── app.css ├── js │ ├── app.js │ └── bootstrap.js ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php └── views │ └── welcome.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ └── MigrationsTest.php └── TestCase.php └── webpack.mix.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/laravel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/.github/workflows/laravel.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/.gitignore -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/.styleci.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/README.md -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/app/Http/Middleware/PreventRequestsDuringMaintenance.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Models/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/app/Models/Category.php -------------------------------------------------------------------------------- /app/Models/Company.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/app/Models/Company.php -------------------------------------------------------------------------------- /app/Models/Country.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/app/Models/Country.php -------------------------------------------------------------------------------- /app/Models/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/app/Models/Product.php -------------------------------------------------------------------------------- /app/Models/Project.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/app/Models/Project.php -------------------------------------------------------------------------------- /app/Models/Task.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/app/Models/Task.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Models/Visitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/app/Models/Visitor.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/sanctum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/config/sanctum.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/CategoryFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/database/factories/CategoryFactory.php -------------------------------------------------------------------------------- /database/factories/ProductFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/database/factories/ProductFactory.php -------------------------------------------------------------------------------- /database/factories/ProjectFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/database/factories/ProjectFactory.php -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/task1/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/database/migrations/task1/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/task1/2021_11_08_091231_create_tasks_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/database/migrations/task1/2021_11_08_091231_create_tasks_table.php -------------------------------------------------------------------------------- /database/migrations/task1/2021_11_08_092943_create_comments_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/database/migrations/task1/2021_11_08_092943_create_comments_table.php -------------------------------------------------------------------------------- /database/migrations/task10/2021_11_09_090752_create_countries_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/database/migrations/task10/2021_11_09_090752_create_countries_table.php -------------------------------------------------------------------------------- /database/migrations/task10/2021_11_09_090858_create_visitors_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/database/migrations/task10/2021_11_09_090858_create_visitors_table.php -------------------------------------------------------------------------------- /database/migrations/task2/2021_11_09_075914_create_new_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/database/migrations/task2/2021_11_09_075914_create_new_users_table.php -------------------------------------------------------------------------------- /database/migrations/task2/2021_11_09_075928_add_surname_to_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/database/migrations/task2/2021_11_09_075928_add_surname_to_users_table.php -------------------------------------------------------------------------------- /database/migrations/task3/2021_11_09_080955_create_projects_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/database/migrations/task3/2021_11_09_080955_create_projects_table.php -------------------------------------------------------------------------------- /database/migrations/task4/2021_11_09_082155_create_categories_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/database/migrations/task4/2021_11_09_082155_create_categories_table.php -------------------------------------------------------------------------------- /database/migrations/task4/2021_11_09_082205_create_products_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/database/migrations/task4/2021_11_09_082205_create_products_table.php -------------------------------------------------------------------------------- /database/migrations/task5/2021_11_09_083051_create_another_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/database/migrations/task5/2021_11_09_083051_create_another_users_table.php -------------------------------------------------------------------------------- /database/migrations/task5/2021_11_09_083121_update_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/database/migrations/task5/2021_11_09_083121_update_users_table.php -------------------------------------------------------------------------------- /database/migrations/task5/2021_11_09_083225_recreate_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/database/migrations/task5/2021_11_09_083225_recreate_users_table.php -------------------------------------------------------------------------------- /database/migrations/task6/2021_11_09_083843_create_companies_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/database/migrations/task6/2021_11_09_083843_create_companies_table.php -------------------------------------------------------------------------------- /database/migrations/task7/2021_11_09_084922_create_new_companies_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/database/migrations/task7/2021_11_09_084922_create_new_companies_table.php -------------------------------------------------------------------------------- /database/migrations/task8/2021_11_09_085417_create_company_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/database/migrations/task8/2021_11_09_085417_create_company_table.php -------------------------------------------------------------------------------- /database/migrations/task8/2021_11_09_085453_rename_companies_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/database/migrations/task8/2021_11_09_085453_rename_companies_table.php -------------------------------------------------------------------------------- /database/migrations/task9/2021_11_09_090003_create_another_companies_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/database/migrations/task9/2021_11_09_090003_create_another_companies_table.php -------------------------------------------------------------------------------- /database/migrations/task9/2021_11_09_090018_rename_name_in_companies_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/database/migrations/task9/2021_11_09_090018_rename_name_in_companies_table.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/public/index.php -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/public/web.config -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | require('./bootstrap'); 2 | -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/routes/web.php -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/server.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/MigrationsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/tests/Feature/MigrationsTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Test-Laravel-Migrations/HEAD/webpack.mix.js --------------------------------------------------------------------------------