/home/techb158/ileadtechnology.com/SSM/app/Repositories/configuration/asset
Edit: /home/techb158/ileadtechnology.com/SSM/app/Repositories/configuration/asset/RoomRepository.php (4952B)
room = $room;
$this->building = $building;
}
/**
* Get room query
*
* @return Room query
*/
public function getQuery()
{
return $this->room;
}
/**
* Count room
*
* @return integer
*/
public function count()
{
return $this->room->count();
}
/**
* List all rooms by name & id
*
* @return array
*/
public function listAll()
{
return $this->room->get()->pluck('name', 'id')->all();
}
/**
* List all rooms by name & id for select option
*
* @return array
*/
public function selectAll()
{
return $this->room->get(['name', 'id']);
}
/**
* List all rooms by id
*
* @return array
*/
public function listId()
{
return $this->room->get()->pluck('id')->all();
}
/**
* Get all rooms
*
* @return array
*/
public function getAll()
{
return $this->room->info()->get();
}
/**
* Find room with given id.
*
* @param integer $id
* @return Room
*/
public function find($id)
{
return $this->room->info()->find($id);
}
/**
* Find room with given id or throw an error.
*
* @param integer $id
* @return Room
*/
public function findOrFail($id, $field = 'message')
{
$room = $this->room->info()->find($id);
if (! $room) {
throw ValidationException::withMessages([$field => trans('asset.could_not_find_room')]);
}
return $room;
}
/**
* Get all filtered data
*
* @param array $params
* @return Room
*/
public function getData($params)
{
$sort_by = gv($params, 'sort_by', 'position');
$order = gv($params, 'order', 'asc');
return $this->room->info()->orderBy($sort_by, $order);
}
/**
* Paginate all rooms using given params.
*
* @param array $params
* @return \Illuminate\Contracts\Pagination\LengthAwarePaginator
*/
public function paginate($params)
{
$page_length = gv($params, 'page_length', config('config.page_length'));
return $this->getData($params)->paginate($page_length);
}
/**
* Get all filtered data for printing
*
* @param array $params
* @return Room
*/
public function print($params)
{
return $this->getData($params)->get();
}
/**
* Get room pre requisite.
*
* @return Array
*/
public function getPreRequisite()
{
$buildings = $this->building->selectAll();
return compact('buildings');
}
/**
* Create a new room.
*
* @param array $params
* @return Room
*/
public function create($params)
{
return $this->room->forceCreate($this->formatParams($params));
}
/**
* Prepare given params for inserting into database.
*
* @param array $params
* @param string $type
* @return array
*/
private function formatParams($params, $room_id = null)
{
$building = $this->building->findOrFail(gv($params, 'building_id'));
$formatted = [
'name' => gv($params, 'name'),
'description' => gv($params, 'description'),
'building_id' => gv($params, 'building_id'),
'floor_number' => gv($params, 'floor_number'),
];
$formatted['options'] = [];
return $formatted;
}
/**
* Update given room.
*
* @param Room $room
* @param array $params
*
* @return Room
*/
public function update(Room $room, $params)
{
return $room->forceFill($this->formatParams($params, $room->id))->save();
}
/**
* Find room & check it can be deleted or not.
*
* @param integer $id
* @return Room
*/
public function deletable($id)
{
$room = $this->findOrFail($id);
return $room;
}
/**
* Delete room.
*
* @param integer $id
* @return bool|null
*/
public function delete(Room $room)
{
return $room->delete();
}
/**
* Delete multiple rooms.
*
* @param array $ids
* @return bool|null
*/
public function deleteMultiple($ids)
{
return $this->room->whereIn('id', $ids)->delete();
}
}