2015-06-04 84 views
0

我正在使用Laravel 5.而且我是初學者。 在我OrganisationsController我有一個方法如何在Laravel 5中進行驗證

public function create() 
{ 
    return view('organisations.create'); 
} 

在我routes.php我有

Route::model('organisations', 'Organisation'); 
Route::resource('organisations', 'OrganisationsController'); 

在我create.blade.php我有這樣

<link href="{{ asset('css/style.css') }}" rel="stylesheet"> 
@extends('app') 

@section('content') 
<div class="container-fluid"> 
    <div class="row"> 
     <div class="col-md-8 col-md-offset-2"> 
      <div class="panel panel-default"> 
       <div class="panel-heading">Organisation</div> 
        <div class="panel-body"> 
         @if (count($errors) > 0) 
          <div class="alert alert-danger"> 
           <strong>Whoops!</strong> 
           There were some problems with your input.<br><br> 
           <ul> 
            @foreach ($errors->all() as $error) 
             <li>{{ $error }}</li> 
            @endforeach 
           </ul> 
          </div> 
         @endif 

         <!--<form class="form-horizontal" role="form" method="POST" action="{{ url('/organisations/store') }}"> --> 
          <form class="form-horizontal" role="form" method="POST" action="{{ url('/organisations/store') }}" accept-charset="UTF-8"> 
          <input type="hidden" name="_token" value="{{{ csrf_token() }}}"> 


          <div class="form-group"> 
           <label class="col-md-4 control-label">Name</label> 
           <div class="col-md-6"> 
            <input type="text" class="form-control" name="name" value="{{ old('name') }}"> 
           </div> 
          </div> 
          <div class="form-group"> 
           <label class="col-md-4 control-label">E-Mail</label> 
           <div class="col-md-6"> 
            <input type="email" class="form-control" name="email" value="{{ old('email') }}"> 
           </div> 
          </div> 

         </form> 
        </div> 
       </div> 
      </div> 
     </div> 
    </div> 
</div> 

我需要驗證電子郵件地址和名稱的代碼字段

I d不知道在哪裏寫驗證。請爲此提供一個示例。我正在使用laravel 5.我搜索了很多網站。但我無法得到解決方案。請告訴我在哪裏寫驗證碼。

+1

你可以把你的驗證碼在app/HTTP /請求/'createOrganisationRequest.php然後在商店提示(createOrganisationRequest $請求){//處理成功}'請檢查有關如何使用請求進行驗證的文檔 – Digitlimit

回答

1
+0

請不要發佈一行作爲您的答案 –

+0

如何改進我的答案? –

+0

您應該在此處發佈解決方案,並將參考資料以laravel網站作爲參考,以便用戶可以瞭解有關該概念的詳細信息。 –