Added pump testing master policies and model file
All checks were successful
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 11s
All checks were successful
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 11s
This commit is contained in:
62
app/Models/PumpTestingMaster.php
Normal file
62
app/Models/PumpTestingMaster.php
Normal file
@@ -0,0 +1,62 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
||||
use Illuminate\Database\Eloquent\SoftDeletes;
|
||||
|
||||
class PumpTestingMaster extends Model
|
||||
{
|
||||
use SoftDeletes;
|
||||
|
||||
protected $fillable = [
|
||||
'plant_id',
|
||||
'item_id',
|
||||
'head',
|
||||
'head_type',
|
||||
'discharge',
|
||||
'discharge_type',
|
||||
'motor_efficiency',
|
||||
'pump_efficiency',
|
||||
'speed',
|
||||
'frequency',
|
||||
'i_max',
|
||||
'p_input',
|
||||
'delivery_size',
|
||||
'no_of_stages',
|
||||
'size',
|
||||
'maximum_head',
|
||||
'motor_type',
|
||||
'motor_code',
|
||||
'kw_hp',
|
||||
'connection_type',
|
||||
'voltage',
|
||||
'phase',
|
||||
'oh_minimum',
|
||||
'oh_maximum',
|
||||
'current_minimum',
|
||||
'current_maximum',
|
||||
'class_of_insulation',
|
||||
'testing_code',
|
||||
'created_at',
|
||||
'updated_at',
|
||||
'created_by',
|
||||
'updated_by',
|
||||
];
|
||||
|
||||
public function plant(): BelongsTo
|
||||
{
|
||||
return $this->belongsTo(Plant::class);
|
||||
}
|
||||
|
||||
public function item(): BelongsTo
|
||||
{
|
||||
return $this->belongsTo(Item::class, 'item_id', 'id');
|
||||
}
|
||||
|
||||
public function pumpTestingEntries()
|
||||
{
|
||||
return $this->hasMany(PumpTestingEntry::class, 'pump_testing_master_id', 'id');
|
||||
}
|
||||
}
|
||||
105
app/Policies/PumpTestingMasterPolicy.php
Normal file
105
app/Policies/PumpTestingMasterPolicy.php
Normal file
@@ -0,0 +1,105 @@
|
||||
<?php
|
||||
|
||||
namespace App\Policies;
|
||||
|
||||
use App\Models\PumpTestingMaster;
|
||||
use App\Models\User;
|
||||
|
||||
class PumpTestingMasterPolicy
|
||||
{
|
||||
/**
|
||||
* Determine whether the user can view any models.
|
||||
*/
|
||||
public function viewAny(User $user): bool
|
||||
{
|
||||
return $user->checkPermissionTo('view-any PumpTestingMaster');
|
||||
}
|
||||
|
||||
/**
|
||||
* Determine whether the user can view the model.
|
||||
*/
|
||||
public function view(User $user, PumpTestingMaster $pumptestingmaster): bool
|
||||
{
|
||||
return $user->checkPermissionTo('view PumpTestingMaster');
|
||||
}
|
||||
|
||||
/**
|
||||
* Determine whether the user can create models.
|
||||
*/
|
||||
public function create(User $user): bool
|
||||
{
|
||||
return $user->checkPermissionTo('create PumpTestingMaster');
|
||||
}
|
||||
|
||||
/**
|
||||
* Determine whether the user can update the model.
|
||||
*/
|
||||
public function update(User $user, PumpTestingMaster $pumptestingmaster): bool
|
||||
{
|
||||
return $user->checkPermissionTo('update PumpTestingMaster');
|
||||
}
|
||||
|
||||
/**
|
||||
* Determine whether the user can delete the model.
|
||||
*/
|
||||
public function delete(User $user, PumpTestingMaster $pumptestingmaster): bool
|
||||
{
|
||||
return $user->checkPermissionTo('delete PumpTestingMaster');
|
||||
}
|
||||
|
||||
/**
|
||||
* Determine whether the user can delete any models.
|
||||
*/
|
||||
public function deleteAny(User $user): bool
|
||||
{
|
||||
return $user->checkPermissionTo('delete-any PumpTestingMaster');
|
||||
}
|
||||
|
||||
/**
|
||||
* Determine whether the user can restore the model.
|
||||
*/
|
||||
public function restore(User $user, PumpTestingMaster $pumptestingmaster): bool
|
||||
{
|
||||
return $user->checkPermissionTo('restore PumpTestingMaster');
|
||||
}
|
||||
|
||||
/**
|
||||
* Determine whether the user can restore any models.
|
||||
*/
|
||||
public function restoreAny(User $user): bool
|
||||
{
|
||||
return $user->checkPermissionTo('restore-any PumpTestingMaster');
|
||||
}
|
||||
|
||||
/**
|
||||
* Determine whether the user can replicate the model.
|
||||
*/
|
||||
public function replicate(User $user, PumpTestingMaster $pumptestingmaster): bool
|
||||
{
|
||||
return $user->checkPermissionTo('replicate PumpTestingMaster');
|
||||
}
|
||||
|
||||
/**
|
||||
* Determine whether the user can reorder the models.
|
||||
*/
|
||||
public function reorder(User $user): bool
|
||||
{
|
||||
return $user->checkPermissionTo('reorder PumpTestingMaster');
|
||||
}
|
||||
|
||||
/**
|
||||
* Determine whether the user can permanently delete the model.
|
||||
*/
|
||||
public function forceDelete(User $user, PumpTestingMaster $pumptestingmaster): bool
|
||||
{
|
||||
return $user->checkPermissionTo('force-delete PumpTestingMaster');
|
||||
}
|
||||
|
||||
/**
|
||||
* Determine whether the user can permanently delete any models.
|
||||
*/
|
||||
public function forceDeleteAny(User $user): bool
|
||||
{
|
||||
return $user->checkPermissionTo('force-delete-any PumpTestingMaster');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user