Added pump testing result policies and model file
All checks were successful
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 12s
All checks were successful
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 12s
This commit is contained in:
47
app/Models/PumpTestingResult.php
Normal file
47
app/Models/PumpTestingResult.php
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Models;
|
||||||
|
|
||||||
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
||||||
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
||||||
|
|
||||||
|
class PumpTestingResult extends Model
|
||||||
|
{
|
||||||
|
use SoftDeletes;
|
||||||
|
|
||||||
|
protected $fillable = [
|
||||||
|
'plant_id',
|
||||||
|
'pump_testing_master_id',
|
||||||
|
'tested_date',
|
||||||
|
'tested_type',
|
||||||
|
'pump_serial_number',
|
||||||
|
'correction_head',
|
||||||
|
'sl_no',
|
||||||
|
'voltage',
|
||||||
|
'current',
|
||||||
|
'watt',
|
||||||
|
'frequency',
|
||||||
|
'speed',
|
||||||
|
'discharge',
|
||||||
|
'head',
|
||||||
|
'pump_output',
|
||||||
|
'power_p2',
|
||||||
|
'overall_efficiency',
|
||||||
|
'pump_efficiency',
|
||||||
|
'created_at',
|
||||||
|
'created_by',
|
||||||
|
'updated_at',
|
||||||
|
'updated_by',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function plant(): BelongsTo
|
||||||
|
{
|
||||||
|
return $this->belongsTo(Plant::class);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function pumpTestingMasters(): BelongsTo
|
||||||
|
{
|
||||||
|
return $this->belongsTo(PumpTestingMaster::class, 'pump_testing_master_id', 'id');
|
||||||
|
}
|
||||||
|
}
|
||||||
105
app/Policies/PumpTestingResultPolicy.php
Normal file
105
app/Policies/PumpTestingResultPolicy.php
Normal file
@@ -0,0 +1,105 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Policies;
|
||||||
|
|
||||||
|
use App\Models\PumpTestingResult;
|
||||||
|
use App\Models\User;
|
||||||
|
|
||||||
|
class PumpTestingResultPolicy
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Determine whether the user can view any models.
|
||||||
|
*/
|
||||||
|
public function viewAny(User $user): bool
|
||||||
|
{
|
||||||
|
return $user->checkPermissionTo('view-any PumpTestingResult');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determine whether the user can view the model.
|
||||||
|
*/
|
||||||
|
public function view(User $user, PumpTestingResult $pumptestingresult): bool
|
||||||
|
{
|
||||||
|
return $user->checkPermissionTo('view PumpTestingResult');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determine whether the user can create models.
|
||||||
|
*/
|
||||||
|
public function create(User $user): bool
|
||||||
|
{
|
||||||
|
return $user->checkPermissionTo('create PumpTestingResult');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determine whether the user can update the model.
|
||||||
|
*/
|
||||||
|
public function update(User $user, PumpTestingResult $pumptestingresult): bool
|
||||||
|
{
|
||||||
|
return $user->checkPermissionTo('update PumpTestingResult');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determine whether the user can delete the model.
|
||||||
|
*/
|
||||||
|
public function delete(User $user, PumpTestingResult $pumptestingresult): bool
|
||||||
|
{
|
||||||
|
return $user->checkPermissionTo('delete PumpTestingResult');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determine whether the user can delete any models.
|
||||||
|
*/
|
||||||
|
public function deleteAny(User $user): bool
|
||||||
|
{
|
||||||
|
return $user->checkPermissionTo('delete-any PumpTestingResult');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determine whether the user can restore the model.
|
||||||
|
*/
|
||||||
|
public function restore(User $user, PumpTestingResult $pumptestingresult): bool
|
||||||
|
{
|
||||||
|
return $user->checkPermissionTo('restore PumpTestingResult');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determine whether the user can restore any models.
|
||||||
|
*/
|
||||||
|
public function restoreAny(User $user): bool
|
||||||
|
{
|
||||||
|
return $user->checkPermissionTo('restore-any PumpTestingResult');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determine whether the user can replicate the model.
|
||||||
|
*/
|
||||||
|
public function replicate(User $user, PumpTestingResult $pumptestingresult): bool
|
||||||
|
{
|
||||||
|
return $user->checkPermissionTo('replicate PumpTestingResult');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determine whether the user can reorder the models.
|
||||||
|
*/
|
||||||
|
public function reorder(User $user): bool
|
||||||
|
{
|
||||||
|
return $user->checkPermissionTo('reorder PumpTestingResult');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determine whether the user can permanently delete the model.
|
||||||
|
*/
|
||||||
|
public function forceDelete(User $user, PumpTestingResult $pumptestingresult): bool
|
||||||
|
{
|
||||||
|
return $user->checkPermissionTo('force-delete PumpTestingResult');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determine whether the user can permanently delete any models.
|
||||||
|
*/
|
||||||
|
public function forceDeleteAny(User $user): bool
|
||||||
|
{
|
||||||
|
return $user->checkPermissionTo('force-delete-any PumpTestingResult');
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user