228 lines
8.1 KiB
PHP
228 lines
8.1 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Modules\Konten;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Support\Facades\File;
|
|
use Carbon\Carbon;
|
|
use App\Models\Konten\Kegiatan;
|
|
|
|
class KegiatanController extends Controller
|
|
{
|
|
|
|
private $template = 'modules.konten.kegiatan';
|
|
private $route = 'modules.konten.kegiatan';
|
|
private $title = 'Konten Kegiatan';
|
|
|
|
/**
|
|
* Display a listing of the resource.
|
|
*/
|
|
public function index()
|
|
{
|
|
$data['breadcrumbs'] = [
|
|
['name' => 'Dashboard','url' => url('dashboard')],
|
|
['name' => 'Konten'],
|
|
['name' => 'Kegiatan','active' => true],
|
|
];
|
|
|
|
$data['route'] = $this->route;
|
|
$data['title'] = $this->title;
|
|
|
|
return view($this->template.'.index',$data);
|
|
}
|
|
|
|
public function grid(Request $request)
|
|
{
|
|
$data = Kegiatan::all();
|
|
|
|
|
|
foreach ($data as $key => $row) {
|
|
|
|
$action = '';
|
|
|
|
if((permission('is_create', $this->route.'.*','module',false)) || (permission('is_update', $this->route.'.*','module',false))){
|
|
$action .= '<a href="'.url('konten/kegiatan/update/'.encode_id($row->KegiatanId)).'" data-toggle="tooltip" title="Edit Data" class="btn btn-xs btn-block btn-primary"><i class="fal fa-pencil text-white"></i></a>';
|
|
$action .= '<a href="#" data-href="'.url('konten/kegiatan/delete/'.encode_id($row->KegiatanId)).'" data-toggle="tooltip" title="Hapus Data" class="remove_data btn btn-xs btn-block btn-danger"><i class="fal fa-trash text-white"></i></a>';
|
|
}
|
|
|
|
$_data[] = [
|
|
'no' => $key+1,
|
|
'id' => encode_id($row->KegiatanId),
|
|
'judul' => $row->judul,
|
|
'created_at' => dateTime($row->created_at),
|
|
'image' => '<image src="'.asset('uploads/'.$row->image).'" width="80">',
|
|
'action' => $action,
|
|
];
|
|
|
|
}
|
|
|
|
return response()->json($_data);
|
|
}
|
|
|
|
/**
|
|
* Show the form for creating a new resource.
|
|
*/
|
|
public function create()
|
|
{
|
|
$data['breadcrumbs'] = [
|
|
['name' => 'Dashboard','url' => url('dashboard')],
|
|
['name' => 'Konten'],
|
|
['name' => 'Kegiatan','url' => url('konten/kegiatan')],
|
|
['name' => 'Tambah Kegiatan','active' => true],
|
|
];
|
|
|
|
$data['route'] = $this->route;
|
|
$data['title'] = $this->title;
|
|
|
|
return view($this->template.'.form',$data);
|
|
}
|
|
|
|
/**
|
|
* Store a newly created resource in storage.
|
|
*/
|
|
public function store(Request $request)
|
|
{
|
|
// dd($request->all());
|
|
try {
|
|
if(@$request->secure_id){
|
|
$keyId = decode_id($request->secure_id);
|
|
$keg = Kegiatan::find($keyId);
|
|
$keg->slug = \Str::slug($request->judul);
|
|
$keg->judul = $request->judul;
|
|
$keg->kategori = $request->kategori;
|
|
$keg->body = $request->body;
|
|
|
|
if (@$request->hasFile('image')) {
|
|
$file = $request->file('image');
|
|
$destinationPath = public_path('uploads/kegiatan');
|
|
$current = Carbon::now()->format('Y/m/d');
|
|
$path = $destinationPath . '/' . $current;
|
|
$fileName = $file->getClientOriginalName();
|
|
$fileMime = $file->getClientMimeType();
|
|
$fileExtension = $file->getClientOriginalExtension();
|
|
$fileSize = $file->getSize();
|
|
if(($fileExtension != 'jpg') && ($fileExtension != 'jpeg') && ($fileExtension != 'png')){
|
|
return redirect()->back()->with([
|
|
'message' => 'Maaf File Harus Berupa PNG,JPEG,JPG!',
|
|
'type' => "error"
|
|
]);
|
|
}
|
|
$newFilename = session('id').'_'.uniqid('file_') . '.' . $fileExtension;
|
|
|
|
if (!File::exists($path)) {
|
|
File::isDirectory($path) or File::makeDirectory($path, 0777, true, true);
|
|
}
|
|
|
|
$filePathTim = 'kegiatan/' . $current . '/' . $newFilename;
|
|
$uploaded = $file->move($path, $newFilename);
|
|
$keg->image = $filePathTim;
|
|
}
|
|
$keg->save();
|
|
}else{
|
|
$keg = new Kegiatan;
|
|
$keg->slug = \Str::slug($request->judul);
|
|
$keg->judul = $request->judul;
|
|
$keg->kategori = $request->kategori;
|
|
$keg->body = $request->body;
|
|
|
|
if (@$request->hasFile('image')) {
|
|
$file = $request->file('image');
|
|
$destinationPath = public_path('uploads/kegiatan');
|
|
$current = Carbon::now()->format('Y/m/d');
|
|
$path = $destinationPath . '/' . $current;
|
|
$fileName = $file->getClientOriginalName();
|
|
$fileMime = $file->getClientMimeType();
|
|
$fileExtension = $file->getClientOriginalExtension();
|
|
$fileSize = $file->getSize();
|
|
if(($fileExtension != 'jpg') && ($fileExtension != 'jpeg') && ($fileExtension != 'png')){
|
|
return redirect()->back()->with([
|
|
'message' => 'Maaf File Harus Berupa PNG,JPEG,JPG!',
|
|
'type' => "error"
|
|
]);
|
|
}
|
|
$newFilename = session('id').'_'.uniqid('file_') . '.' . $fileExtension;
|
|
|
|
if (!File::exists($path)) {
|
|
File::isDirectory($path) or File::makeDirectory($path, 0777, true, true);
|
|
}
|
|
|
|
$filePathTim = 'kegiatan/' . $current . '/' . $newFilename;
|
|
$uploaded = $file->move($path, $newFilename);
|
|
$keg->image = $filePathTim;
|
|
}
|
|
$keg->save();
|
|
}
|
|
return redirect()->back()->with([
|
|
'message' => 'Berhasil update data',
|
|
'type' => 'success',
|
|
]);
|
|
} catch (Exception $e) {
|
|
return redirect()->back()->with([
|
|
'message' => $e->getMessage(),
|
|
'type' => "error"
|
|
]);
|
|
}
|
|
|
|
|
|
}
|
|
|
|
/**
|
|
* Display the specified resource.
|
|
*/
|
|
public function show(string $id)
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Show the form for editing the specified resource.
|
|
*/
|
|
public function edit(string $id)
|
|
{
|
|
$data['breadcrumbs'] = [
|
|
['name' => 'Dashboard','url' => url('dashboard')],
|
|
['name' => 'Konten'],
|
|
['name' => 'Kegiatan','url' => url('konten/kegiatan')],
|
|
['name' => 'Edit Kegiatan','active' => true],
|
|
];
|
|
|
|
$data['route'] = $this->route;
|
|
$data['title'] = $this->title;
|
|
$data['item'] = Kegiatan::find(decode_id($id));
|
|
|
|
return view($this->template.'.form',$data);
|
|
}
|
|
|
|
/**
|
|
* Update the specified resource in storage.
|
|
*/
|
|
public function update($id)
|
|
{
|
|
$data['breadcrumbs'] = [
|
|
['name' => 'Dashboard','url' => url('dashboard')],
|
|
['name' => 'Konten'],
|
|
['name' => 'Kegiatan','url' => url('konten/kegiatan')],
|
|
['name' => 'Tambah Kegiatan','active' => true],
|
|
];
|
|
|
|
$data['route'] = $this->route;
|
|
$data['title'] = $this->title;
|
|
$data['item'] = Kegiatan::find(decode_id($id));
|
|
$data['keyId'] = $id;
|
|
|
|
return view($this->template.'.form',$data);
|
|
}
|
|
|
|
/**
|
|
* Remove the specified resource from storage.
|
|
*/
|
|
public function delete($id)
|
|
{
|
|
$keyId = decode_id($id);
|
|
$form = Kegiatan::where('KegiatanId',$keyId)->delete();
|
|
|
|
return response()->json(['success' => true,'message' => 'Berhasil update data','type' => 'success']);
|
|
}
|
|
}
|