first upload all files
This commit is contained in:
84
Modules/Review/Http/Controllers/Admin/ReviewController.php
Normal file
84
Modules/Review/Http/Controllers/Admin/ReviewController.php
Normal file
@@ -0,0 +1,84 @@
|
||||
<?php
|
||||
|
||||
namespace Modules\Review\Http\Controllers\Admin;
|
||||
|
||||
use Modules\Review\Entities\Review;
|
||||
use Modules\Admin\Traits\HasCrudActions;
|
||||
use Modules\Admin\Ui\Facades\TabManager;
|
||||
use Modules\Review\Http\Requests\UpdateReviewRequest;
|
||||
|
||||
class ReviewController
|
||||
{
|
||||
use HasCrudActions;
|
||||
|
||||
/**
|
||||
* Model for the resource.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $model = Review::class;
|
||||
|
||||
/**
|
||||
* Label of the resource.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $label = 'review::reviews.review';
|
||||
|
||||
/**
|
||||
* View path of the resource.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $viewPath = 'review::admin.reviews';
|
||||
|
||||
/**
|
||||
* Form requests for the resource.
|
||||
*
|
||||
* @var array|string
|
||||
*/
|
||||
protected $validation = UpdateReviewRequest::class;
|
||||
|
||||
/**
|
||||
* Show the form for editing the specified resource.
|
||||
*
|
||||
* @param int $id
|
||||
* @return \Illuminate\Http\Response
|
||||
*/
|
||||
public function edit($id)
|
||||
{
|
||||
$review = Review::withoutGlobalScope('approved')->findOrFail($id);
|
||||
|
||||
$tabs = TabManager::get('reviews');
|
||||
|
||||
return view('review::admin.reviews.edit', compact('review', 'tabs'));
|
||||
}
|
||||
|
||||
/**
|
||||
* Update the specified resource in storage.
|
||||
*
|
||||
* @param int $id
|
||||
* @return \Illuminate\Http\Response
|
||||
*/
|
||||
public function update($id)
|
||||
{
|
||||
$review = Review::withoutGlobalScope('approved')->findOrFail($id);
|
||||
|
||||
$review->update(request()->all());
|
||||
|
||||
return back()->withSuccess(trans('admin::messages.resource_saved', ['resource' => $this->getLabel()]));
|
||||
}
|
||||
|
||||
/**
|
||||
* Destroy resources by given ids.
|
||||
*
|
||||
* @param string $ids
|
||||
* @return void
|
||||
*/
|
||||
public function destroy($ids)
|
||||
{
|
||||
Review::withoutGlobalScope('approved')
|
||||
->whereIn('id', explode(',', $ids))
|
||||
->delete();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user