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
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.
You can check it via Input::get('submit_button_name');
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?
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....
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>
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' )) }}
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community