11-Formlar
usercreate.blade.php
@extends('layout.master');
@section('content');
{{ Form::open(['route'=>'users.store']) }}
{{ Form::label('kullaniciadi','KULLANICI ADI') }}
{{ Form::text('kullaniciadi','KULLANICI ADI') }}
@stop
public function store(){
$kullaniciadi=Input::get('kullaniciadi');
$user=new User;
$user->adsoyad=$kullaniciadi;
$user->save();
}
@extends('layout.master');
@section('content');
{{ Form::open(['route'=>'users.store']) }}
{{ Form::label('kullaniciadi','KULLANICI ADI') }}
{{ Form::text('kullaniciadi','KULLANICI ADI') }}
@stop
public function store(){
$kullaniciadi=Input::get('kullaniciadi');
$user=new User;
$user->adsoyad=$kullaniciadi;
$user->save();
}
Comments
Post a Comment