Current File : /home/tradevaly/demo.tradevaly.com.bd/app/Http/Controllers/CompanyHighlightController.php |
<?php
namespace App\Http\Controllers;
use App\Models\CompanyHighlight;
use Illuminate\Http\Request;
use Auth;
class CompanyHighlightController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index(Request $request)
{
$data = CompanyHighlight::orderBy('id','DESC')->paginate(10);
$countData = CompanyHighlight::orderBy('id','DESC')->count();
return view('backend.company-highlights.index',compact('data' , 'countData'))
->with('i', ($request->input('page', 1) - 1) * 10);
}
/**
* Show the form for creating a new resource.
*
* @return \Illuminate\Http\Response
*/
public function create()
{
return view('backend.company-highlights.create');
}
/**
* Store a newly created resource in storage.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function store(Request $request)
{
$this->validate($request, [
'slogan' => 'required',
'description' => 'required',
]);
$input = $request->all();
$input['created_user_id'] = !empty(Auth::user()->id) ? Auth::user()->id : 0;
$input['updated_at'] = Null;
$responseStatus = '';
$responseMessage = '';
if( CompanyHighlight::create($input) ) {
$responseStatus = 'success';
$responseMessage = 'Company highlight added successfully.';
}else{
$responseStatus = 'error';
$responseMessage = 'Something went wrong, please try again.';
}
//$add = CompanyCountry::create(['name' => $request->input('name')]);
return redirect()->route('company-highlights.index')
->with($responseStatus, $responseMessage);
}
/**
* Display the specified resource.
*
* @param \App\Models\CompanyHighlight $companyHighlight
* @return \Illuminate\Http\Response
*/
public function show(CompanyHighlight $companyHighlight)
{
//
}
/**
* Show the form for editing the specified resource.
*
* @param \App\Models\CompanyHighlight $companyHighlight
* @return \Illuminate\Http\Response
*/
public function edit(CompanyHighlight $companyHighlight)
{
$data = CompanyHighlight::find($companyHighlight->id);
return view('backend.company-highlights.edit',compact('data'));
}
/**
* Update the specified resource in storage.
*
* @param \Illuminate\Http\Request $request
* @param \App\Models\CompanyHighlight $companyHighlight
* @return \Illuminate\Http\Response
*/
public function update(Request $request, CompanyHighlight $companyHighlight)
{
$input = $request->all();
$this->validate($request, [
'slogan' => 'required',
'description' => 'required',
]);
$input = $request->all();
$input['modified_user_id'] = !empty(Auth::user()->id) ? Auth::user()->id : 0;
$input['updated_at'] = date("Y-m-d h:i:sa");;
$data = CompanyHighlight::find($companyHighlight->id);
if( $data->update($input) ) {
$responseStatus = 'success';
$responseMessage = 'Company highlight updated successfully.';
}else{
$responseStatus = 'error';
$responseMessage = 'Something went wrong, please try again.';
}
//$add = CompanyCountry::create(['name' => $request->input('name')]);
return redirect()->route('company-highlights.index')
->with($responseStatus, $responseMessage);
}
/**
* Remove the specified resource from storage.
*
* @param \App\Models\CompanyHighlight $companyHighlight
* @return \Illuminate\Http\Response
*/
public function destroy(CompanyHighlight $companyHighlight)
{
$update['deleted_user_id'] = !empty(Auth::user()->id) ? Auth::user()->id : 0;
$data = CompanyHighlight::find($companyHighlight->id);
if( $data->delete() && $data->update([ 'deleted_user_id' => !empty(Auth::user()->id) ? Auth::user()->id : 0]) ) {
$responseStatus = 'success';
$responseMessage = 'Company highlight deleted successfully.';
}else{
$responseStatus = 'error';
$responseMessage = 'Something went wrong, please try again.';
}
//$add = CompanyCountry::create(['name' => $request->input('name')]);
return redirect()->route('company-highlights.index')
->with($responseStatus, $responseMessage);
}
public function activeInactive($id)
{
$data = CompanyHighlight::findOrFail($id);
//dd($data;die;
$responseMessage = '';
if($data->status == 0){
$input['status'] = 1;
$responseMessage = 'Company highlight active successfully';
}else{
$input['status'] = 0;
$responseMessage = 'Company highlight inactive successfully';
}
if( $data->update($input) ) {
$responseStatus = 'success';
}else{
$responseStatus = 'error';
$responseMessage = 'Something went wrong, please try again.';
}
//$add = Country::create(['name' => $request->input('name')]);
return redirect()->route('company-highlights.index')
->with($responseStatus, $responseMessage);
}
}