Index: README.md
===================================================================
--- README.md	(revision 7304c7f4e9d471fa8974c193daec4fdd86dabe58)
+++ README.md	(revision 582789f8fd3b5f9520ed36b7f2feb0828d4a43af)
@@ -1,2 +1,6 @@
+<<<<<<< HEAD
+# SaveSpace
+Document management system in PHP
+=======
 <p align="center"><a href="https://laravel.com" target="_blank"><img src="https://raw.githubusercontent.com/laravel/art/master/logo-lockup/5%20SVG/2%20CMYK/1%20Full%20Color/laravel-logolockup-cmyk-red.svg" width="400"></a></p>
 
@@ -63,2 +67,3 @@
 
 The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).
+>>>>>>> 7304c7f4e9d471fa8974c193daec4fdd86dabe58
Index: app/Console/Commands/clearAll.php
===================================================================
--- app/Console/Commands/clearAll.php	(revision 582789f8fd3b5f9520ed36b7f2feb0828d4a43af)
+++ app/Console/Commands/clearAll.php	(revision 582789f8fd3b5f9520ed36b7f2feb0828d4a43af)
@@ -0,0 +1,59 @@
+<?php
+
+namespace App\Console\Commands;
+
+use Illuminate\Console\Command;
+use Illuminate\Support\Facades\Artisan;
+
+class ClearAll extends Command
+{
+    /**
+     * The name and signature of the console command.
+     *
+     * @var string
+     */
+    protected $signature = 'clear:all {--ms : Do migrate fresh and seed}';
+
+    /**
+     * The console command description.
+     *
+     * @var string
+     */
+    protected $description = 'Clear config, cache, view, route';
+
+    /**
+     * Create a new command instance.
+     *
+     * @return void
+     */
+    public function __construct()
+    {
+        parent::__construct();
+    }
+
+    /**
+     * Execute the console command.
+     *
+     * @return mixed
+     */
+    public function handle()
+    {
+        $ms = $this->option("ms");
+
+        if($ms) {
+            Artisan::call("migrate:fresh");
+            Artisan::call("db:seed");
+        }
+
+        Artisan::call("config:cache");
+        Artisan::call("cache:clear");
+        Artisan::call("view:clear");
+        Artisan::call("route:clear");
+
+        if($ms) {
+            $this->info("All data and caches are cleared");
+        } else {
+            $this->info("All caches are cleared");
+        }
+    }
+}
Index: public/assets/js/app.js
===================================================================
--- public/assets/js/app.js	(revision 7304c7f4e9d471fa8974c193daec4fdd86dabe58)
+++ public/assets/js/app.js	(revision 582789f8fd3b5f9520ed36b7f2feb0828d4a43af)
@@ -834,10 +834,10 @@
 
   /***/
-  0: function _(module, exports, __nested_webpack_require_30556__) {
-    __nested_webpack_require_30556__(
+  0: function _(module, exports, __nested_webpack_require_30733__) {
+    __nested_webpack_require_30733__(
     /**/
     "./resources/js/app.js");
 
-    module.exports = __nested_webpack_require_30556__(
+    module.exports = __nested_webpack_require_30733__(
     /**/
     "./public/assets/sass/app.scss");
