srp form
This commit is contained in:
@@ -36,7 +36,7 @@ class SRPController extends Controller
|
||||
|
||||
//See if the FC Name ties to a user on the services site
|
||||
$fcId = User::where(['name' => $request->fc])->get(['character_id']);
|
||||
|
||||
dd($fcId);
|
||||
//Take the loss value and remove ' ISK' from it. Convert the string to a number
|
||||
$lossValue = str_replace(' ISK', '', $request->LossValue);
|
||||
$lossValue = str_replace(',', '', $lossValue);
|
||||
|
||||
10
app/Models/SRP/SrpFleetType.php
Normal file
10
app/Models/SRP/SrpFleetType.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class SrpFleetType extends Model
|
||||
{
|
||||
//
|
||||
}
|
||||
10
app/Models/SRP/SrpShipType.php
Normal file
10
app/Models/SRP/SrpShipType.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class SrpShipType extends Model
|
||||
{
|
||||
//
|
||||
}
|
||||
Reference in New Issue
Block a user