Vijayakrishnan 5 жил өмнө
parent
commit
e317cd89ea

+ 43 - 0
app/Console/Commands/GenerateCVCommand.php

@@ -0,0 +1,43 @@
+<?php
+
+namespace App\Console\Commands;
+
+use Illuminate\Console\Command;
+
+class GenerateCVCommand extends Command
+{
+    /**
+     * The name and signature of the console command.
+     *
+     * @var string
+     */
+    protected $signature = 'generatecv
+                            {path: /path/to/input.json}';
+
+    /**
+     * The console command description.
+     *
+     * @var string
+     */
+    protected $description = 'Command description';
+
+    /**
+     * Create a new command instance.
+     *
+     * @return void
+     */
+    public function __construct()
+    {
+        parent::__construct();
+    }
+
+    /**
+     * Execute the console command.
+     *
+     * @return mixed
+     */
+    public function handle()
+    {
+        //
+    }
+}

+ 1 - 1
app/Console/Kernel.php

@@ -13,7 +13,7 @@ class Kernel extends ConsoleKernel
      * @var array
      */
     protected $commands = [
-        //
+        Commands\GenerateCVCommand::class,
     ];
 
     /**

+ 55 - 0
generatecv/entities.json

@@ -0,0 +1,55 @@
+{
+    "Controllers": {
+        "MyPaymentSchedule": {},
+        "MyTeams": {
+            "fields": [
+                "uid|UID|text",
+                "hcp_pro_id|HCP|text",
+                "ally_pro_id|Ally|text",
+                "client_count|Client Count|number|readonly"
+            ],
+            "add": "/api/teams/new",
+            "edit": "/api/teams/update/:id",
+            "delete": "/api/teams/delete/:id"
+        },
+        "MyClients":  {
+
+        },
+        "Notes": {
+
+        },
+        "ERX":  {
+
+        },
+        "ActionItems": {
+
+        },
+        "CareMonths":  {
+
+        },
+        "Bills": {
+
+        },
+        "Transactions":  {
+
+        },
+        "MedProfileLines": {
+
+        },
+        "MedProfileLineUpdates":  {
+
+        },
+        "ProAccess": {
+
+        },
+        "McpUpdates":  {
+
+        },
+        "AllyUpdates": {
+
+        },
+        "AuditLog": {
+
+        }
+    }
+}