Support the ongoing development of Laravel.io →
posted 10 years ago
Forms

hi i just learning laravel and don't know how to check which submit is clicked... i tried this so far this is my controller

public function update($id)
{
	$data = Input::all();
	if(isset($data['Simpan'])) {
		$artikel = Artikel::findOrFail($id);

		$validator = Validator::make($data, Artikel::$rules);

		if ($validator->fails())
		{
			return Redirect::back()->withErrors($validator)->withInput();
		}

		$artikel->update($data);

		return Redirect::route('admin.artikels.index');
	}elseif(isset($data['Batal'])) {
		$this->index();
	}
}

and this is my form


@extends('admin._layouts.admin')

@section('content')
{{ Form::model($artikel, array('route' => array('admin.artikels.update',$artikel->id), 'method' => 'put')) }}
    <div class="panel panel-default">
        <!--button-->
        <div class="panel-heading tooltip-demo">
        	{{ Form::submit('Simpan',array('class' => 'btn btn-primary', 'data-toggle' => 'tooltip', 
        	   'data-placement' => 'top','title' => 'Menyimpan artikel' )) }}
        	{{ Form::submit('Batal',array('class' => 'btn btn-default', 'data-toggle' => 'tooltip', 
        	   'data-placement' => 'top','title' => 'Batal menambah artikel dan kembali ke halaman kelola artikel' )) }}
        </div>
        <!--/button-->
        <div class="panel-body">
            <!--judul-->
            <div class="col-lg-10">
            <div class="form-group">
                {{ Form::label('Judul Artikel') }}
                {{ Form::text('judul',null,array('class' => 'form-control', 'placeholder' => 'Silahkan masukkan judul artikel'))}}
                {{ $errors->first('judul', '<p class="error">:message</p>') }}
            </div>
            </div>
            <!--/judul-->
            <!--kategori-->
            <div class="col-lg-4">
            <div class="form-group">
                {{ Form::label('Kategori') }}
                {{ Form::select('kategori',array(KategoriArtikel::lists('name','id'), 'tambah' => 'Tambah Kategori Baru'),'Pilih Kategori Artikel',
                   array('class' => 'form-control', 'onChange' => 'changeFunc(value)')) }}
                {{ $errors->first('kategori', '<p class="error">:message</p>') }}
            </div>
            </div>
            <!--/kategori-->
            <!--kategori baru-->
            <div class="col-lg-4"  id="pilihan" style="display:none;">
            <div class="form-group">
            	{{ Form::label('Kategori Baru') }}
            	{{ Form::text('kategori_baru',null,array('class' => 'form-control', 'placeholder' => 'Silahkan masukkan kategori baru', 
            	   'maxlength' => '30'))}}
            	{{ $errors->first('kategori_baru', '<p class="error">:message</p>') }}
            </div>
            </div>
            <!--/kategori baru-->
            <!--status-->
            <div class="col-lg-4">
            <div class="form-group">
                {{ Form::label('Status') }}
                {{ Form::select('status',array('0' => 'Tidak diterbikan', '1' => 'Terbitkan'),null, array('class' => 'form-control')) }}
            	{{ $errors->first('status', '<p class="error">:message</p>') }}
            </div>
            </div>
            <!--/status-->

            <!--content-->
            <div class="col-lg-12">
                {{ Form::label('Isi Artikel') }}
                {{ Form::textarea('content',null,array('style' => 'height:300px')) }}
                {{ $errors->first('content', '<p class="error">:message</p>') }}
            </div>
            <!--/content-->
        </div>
     </div>
{{ Form::close() }}
@stop
Last updated 2 years ago.
0

Your submitted button value will be within the inputs sent.

In your controller which handles the response tothe form try something like

dd(Input::all()) and look at the results, it should tell you which submit button was pressed.

Last updated 2 years ago.
0

You can check it via Input::get('submit_button_name');

Last updated 2 years ago.
0

matyhaty said:

Your submitted button value will be within the inputs sent.

In your controller which handles the response tothe form try something like

dd(Input::all()) and look at the results, it should tell you which submit button was pressed.

well i tried it, and it only show array of all my input but not my submit button... is it something to do with put method?

Last updated 2 years ago.
0

Stol3x said:

You can check it via Input::get('submit_button_name');

well since it's not returning value in input::all() array so check using that is useless....

Last updated 2 years ago.
0

okay i already find the solution, it appear that Laravel Form builder uses the input to generate the submit button which will not be submitted so the only solution is using this

<button type="submit" name="simpan" class="btn btn-primary" data-toggle ='tooltip' 
    data-placement='top' title ='Batal menambah artikel dan kembali ke halaman kelola artikel' value="simpan">Simpan</button>

<button type="submit" name="batal" class="btn btn-primary" data-toggle ='tooltip' 
    data-placement='top' title ='Menyimpan artikel' value="simpan">Batal</button>
Last updated 2 years ago.
0

just add name property to the Form builder.

{{ Form::submit('Simpan',array('name' => 'simpan', 'class' => 'btn btn-primary', 'data-toggle' => 'tooltip', 'data-placement' => 'top','title' => 'Menyimpan artikel' )) }}

Last updated 2 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

t0n1zz t0n1zz Joined 8 Oct 2014

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2025 Laravel.io - All rights reserved.