KacangController.php 4.38 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;
use App\kacang;
use Illuminate\Support\Facades\Input;
use App\Http\Requests;
use App\Http\Requests\kacang\StoreRequest;
use App\Http\Requests\kacang\UpdateRequest;
use Image;

class KacangController extends Controller
{
    public function index()
    {
        $kacangs = kacang::all();
18
        return view('Admin.MonitoringKacang.index', compact('kacangs'));
19 20 21 22 23 24 25 26 27
    }

    /**
     * Show the form for creating a new resource.
     *
     * @return \Illuminate\Http\Response
     */
    public function create()
    {
28
        return view('Admin.MonitoringKacang.create');
29 30 31 32
    }

    public function siram()
    {
33
        return view('Admin.HalamanMonitoring.siram');
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
    }

    /**
     * Store a newly created resource in storage.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return \Illuminate\Http\Response
     */

    public function store(Request $request)
    {
        $kacangs = new kacang();

        $kacangs->nama = $request->nama;
        $kacangs->family = $request->family;
        $kacangs->tanggal_tanam = $request->tanggal_tanam;
        $kacangs->usia = $request->usia;
        $kacangs->hama = $request->hama;
        $kacangs->syarat_tumbuh = $request->syarat_tumbuh;
        $kacangs->pemeliharaan = $request->pemeliharaan;

        $file = $request->file('foto');
        $fileName = $file->getClientOriginalName();
        $request->file('foto')->move("image/",$fileName);
        $kacangs->foto = $fileName;

//        $image = Input::file('image');
//        var_dump($image);
//        Input::file('image')->getClientOriginalExtension();
//        $filename = date('Y-m-d-H:i:s')."-".$image->getClientOriginalName();
//        Image::make($image->getRealPath())->resize(468, 249)->save('public/image/'. $filename);
//        $kacangs->foto = 'image/ '. $filename;
//
//        $filename = $image[0]->getClientOriginalName();
//        print_($filename);


//        if ($request->hasFile('files_field')) {
//            $file= $request->Input('files_field');
//
//            $destination_path='image/';
//
//            $Orname = $file->getClientOriginalName();
//
//            $filename= str_random(6).'_'.$Orname;
//
//            $file->move($destination_path,$filename);
//
//            $kacangs->foto = $destination_path.$filename;
//        }






        $kacangs->save();
        return redirect()->route('kacang.index')->with('alert-success', 'Data Berhasil Disimpan.');
    }

    /**
     * Display the specified resource.
     *
     * @param  int  $id
     * @return \Illuminate\Http\Response
     */
    public function show($id)
    {
        $kacangs = kacang::findOrFail($id);
103
        return view('Admin.HalamanMonitoring.lihat', compact('kacangs'));
104 105 106 107 108 109 110 111 112 113 114
    }

    /**
     * Show the form for editing the specified resource.
     *
     * @param  int  $id
     * @return \Illuminate\Http\Response
     */
    public function edit($id)
    {
        $kacangs = kacang::findOrFail($id);
115
        return view('Admin.HalamanMonitoring.edit', compact('kacangs'));
116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
    }



    /**
     * Update the specified resource in storage.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  int  $id
     * @return \Illuminate\Http\Response
     */
    public function update(UpdateRequest $request, $id)
    {
        $kacangs = kacang::findOrFail($id);
        $kacangs->foto = $request->foto;
        $kacangs->nama = $request->nama;
        $kacangs->family = $request->family;
        $kacangs->tanggal_tanam = $request->tanggal_tanam;
        $kacangs->usia = $request->usia;
        $kacangs->hama = $request->hama;
        $kacangs->syarat_tumbuh = $request->syarat_tumbuh;
        $kacangs->pemeliharaan = $request->pemeliharaan;
        $file = $request->file('images');
        $fileName = $file->getClientOriginalName();
        $request->file('images')->move("image/",$fileName);
        $kacangs->images = $fileName;
        $kacangs->save();
143
        return redirect()->route('HalamanMonitoring.index')->with('alert-success', 'Data Berhasil Diubah.');
144 145 146 147 148 149 150 151 152 153 154 155
    }

    /**
     * Remove the specified resource from storage.
     *
     * @param  int  $id
     * @return \Illuminate\Http\Response
     */
    public function destroy($id)
    {
        $kacangs = kacang::findOrFail($id);
        $kacangs->delete();
156
        return redirect()->route('HalamanMonitoring.index')->with('alert-success', 'Data Berhasil Dihapus.');
157 158
    }
}