You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
xshop/app/Http/Controllers/XController.php

111 lines
2.1 KiB
PHTML

5 months ago
<?php
namespace App\Http\Controllers;
use App\Models\User;
use Illuminate\Http\Request;
class XController extends Controller
{
protected $model = User::class;
protected $name = "User";
protected $cols = [];
protected $extra_cols = ['id'];
5 months ago
protected $listView = 'admin.users.user-list';
protected $formView = 'admin.users.user-form';
public function createOrUpdate($item, Request $request)
{
5 months ago
}
protected function showList($query)
{
$items = $query->paginate(config('app.panel.page_count'), array_merge($this->extra_cols, $this->cols));
$cols = $this->cols;
return view($this->listView, compact('items', 'cols'));
}
protected function makeSortAndFilter()
{
if (!\request()->has('sort') || !in_array(\request('sort'), $this->cols)) {
$query = $this->model::orderByDesc('id');
} else {
$query = $this->model::orderBy(\request('sort'), \request('sortType', 'asc'));
}
return $query;
}
5 months ago
/**
* Display a listing of the resource.
*/
public function index()
{
$query = $this->makeSortAndFilter();
return $this->showList($query);
5 months ago
}
/**
* Show the form for creating a new resource.
*/
public function create()
{
//
}
/**
* Store a newly created resource in storage.
*/
public function store(Request $request)
{
//
}
/**
* Display the specified resource.
*/
public function show($user)
5 months ago
{
//
}
/**
* Show the form for editing the specified resource.
*/
public function edit($user)
{
//
}
/**
* Update the specified resource in storage.
*/
public function update(Request $request, $user)
5 months ago
{
//
}
/**
* Remove the specified resource from storage.
*/
public function destroy($user)
{
//
}
/**
* Show list of trashed
*/
public function trashed()
{
$query = User::onlyTrashed();
return $this->showList($query);
}
5 months ago
}