File: /www/wwwroot//www.shooperm.com/Modules/Setup/Repositories/TagRepository.php
<?php
namespace Modules\Setup\Repositories;
use Modules\Setup\Entities\Tag;
use Auth;
class TagRepository
{
public function getAll()
{
return Tag::all();
}
public function create(array $data)
{
return Tag::create($data);
}
public function find($id)
{
return Tag::findOrFail($id);
}
public function update(array $data, $id)
{
return Tag::findOrFail($id)->update($data);
}
public function delete($id)
{
return Tag::findOrFail($id)->delete();
}
public function getTagBySentence($sentence)
{
$keywords = explode(' ', $sentence);
$tags = Tag::whereIn('name', $keywords)->inRandomOrder()->take(6)->get();
$result = "";
foreach ($tags as $tag) {
$result .= '<a href="#" class="tag-add">'.$tag->name.'</a>    ';
}
return $result;
}
public function is_tag($name)
{
return Tag::where('name',$name)->first();
}
public function getByAjax($search){
$tags = collect();
if($search == ''){
$tags = Tag::select('id','name')->paginate(10);
}else{
$tags = Tag::select('id','name')
->where('name', 'LIKE', "%{$search}%")
->paginate(10);
}
$response = [];
foreach($tags as $tag){
$response[] =[
'id' =>$tag->id,
'text' =>$tag->name
];
}
return $response;
}
public function firstTag(){
return Tag::select(['id', 'name'])->first();
}
}