Как обновить значение в пользовательской таблице в laravel 5.1
У меня есть проблема, я не могу обновить свою таблицу пользователей. Я не знаю, где у него проблема. Когда я отправляю свою обновленную информацию, она не может обновляться. Это не показывает никакой ошибки. Но таблица не обновляется. Пожалуйста, помогите мне, ребята. Мой контроллер
public function getUpdate() {
$profile = Auth::user();
return view('admin.article.edit')
->with('profile',$profile);
}
public function postUpdate(Request $request ) {
$profile = Auth::user();
$this->validate($request, [
'name' => 'required|max:120',
'username' => 'required|max:80',
'email' => 'required',
'password' => 'required'
]);
// save users table
$profile = Auth::user();
// $user = new App\User;
$profile->name = $request->input('name');
$profile->email = $request->input('email');
$profile->username = $request->input('username');
$profile->password = $request->input('password');
$profile->update();
}
Моя страница edit.blade.php
<?php $active="profile"; ?>
@extends('admin.dashboard')
@section('content')
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>
User Profile
</h1>
<ol class="breadcrumb">
<li><a href="#"><i class="fa fa-dashboard"></i> Home</a></li>
<li class="active">User profile</li>
</ol>
</section>
<!-- Main content -->
<section class="content">
<div class="row">
<!-- left column -->
<div class="col-md-10">
<!-- general form elements -->
<div class="box box-primary">
<div class="box-header with-border">
<h3 class="box-title">Quick Example</h3>
</div>
<!-- /.box-header -->
<!-- form start -->
<form action="{{ route('update') }}" role="form" method="post" enctype="multipart/form-data">
<div class="box-body">
<div class="form-group">
<label for="name">Name</label>
<input type="text" class="form-control" name="name" id="name" {{ $errors->has('name') ? 'class=has-error' : '' }} value="{{ Request::old('name') ? Request::old('name') : isset($profile) ? $profile->name : '' }}">
</div>
<div class="form-group">
<label for="username">User Name</label>
<input type="text" class="form-control" name="institute" id="institute" {{ $errors->has('username') ? 'class=has-error' : '' }} value="{{ Request::old('institute') ? Request::old('username') : isset($profile) ? $profile->institute : '' }}">
</div>
</div>
<!-- /.box-body -->
<div class="box-footer">
<button type="submit" class="btn btn-primary">Submit</button>
<input type="hidden" name="_token" value="{{ Session::token() }}">
<input type="hidden" name="id" value="{{ $profile->id }}">
</div>
</form>
</div>
<!-- /.box -->
</div>
<!--/.col (left) -->
</div>
<!-- /.row -->
</section>
<!-- /.content -->
@endsection
Мой файл маршрута
Route::get('/profile/edit', [
'uses' => 'ProfileController@getUpdate',
'as' => 'edit'
]);
Route::post('profile/update', [
'uses' => 'ProfileController@postUpdate',
'as' => 'update'
]);
6 ответов
В вашем маршруте вы должны написать это
Route::get('/profile/{profile_id}/edit', [
'uses' => 'ProfileController@getUpdate',
'as' => 'edit'
]);
Route::post('profile/update', [
'uses' => 'ProfileController@postUpdate',
'as' => 'update'
]);
И в вашем контроллере вы должны написать это
public function getUpdate() {
$divisions = Division::all();
$districts = District::all();
$dcategories = Dcategory::all();
$profile = Auth::user();
return view('admin.article.edit')
->with('divisions',$divisions)
->with('districts',$districts)
->with('dcategories',$dcategories)
->with('profile',$profile);
}
public function postUpdate(Request $request ) {
$this->validate($request, [
'name' => 'required|max:120',
'fee' => 'required|max:5',
'division_id' => '',
'district_id' => '',
'dcategory_id' => '',
'education' => '',
'institute' => '',
'specialty' => '',
'hospital' => '',
'time' => '',
'phone' => '',
'image' =>''
]);
$doctor = Auth::user();
$doctor->name = $request['name'];
$doctor->division_id = $request['division_id'];
$doctor->district_id = $request['district_id'];
$doctor->dcategory_id = $request['dcategory_id'];
$doctor->institute = $request['institute'];
$doctor->education = $request['education'];
$doctor->specialty = $request['specialty'];
$doctor->hospital = $request['hospital'];
$doctor->phone = $request['phone'];
$doctor->time = $request['time'];
$doctor->fee = $request['fee'];
// $photo = Photo::find($request['id']);
$logo=$request->file('image');
if(!empty($logo)) {
$upload='uploads/logo';
$filename=$logo->getClientOriginalName();
$success=$logo->move($upload,$filename);
$doctor->image = $filename;
}
Это может решить вашу проблему.
Попробуй это
Сначала проверьте, заполнили ли вы все поля, которые вы обновляете.
Приложение /Entites/User.php
<?php
protected $fillable = ['name', 'email', 'password','username'];
а затем обновить записи
$profile = Auth::user();
$profile->name = $request->name;
$profile->email = $request->email;
$profile->username = $request->institute;
$profile->password = bcrypt($request->password);
$profile->save();
$profile = Auth::user();
создает новую строку и $profile->save();
сохранит записи.
чтобы обновить конкретную строку, укажите этот row.eg
$id=$request->input('id');
$profile = User::where(['id'=>$id])->first();
$profile->name = $request->input('name');
$profile->email = $request->input('email');
$profile->username = $request->input('username');
$profile->password = $request->input('password');
$profile->update();
Он не обновляется, потому что в вашем представлении формы нет имени пользователя, которого вы указали в атрибуте имени
name="institute"
Измените это на имя пользователя и попробуйте. ПЛЮС у вас нет полей для пароля и электронной почты.
Предполагая, что вы получите пользователя от auth(). Так что меняй
$profile = Auth::user();
$profile->name = $request->input('name');
$profile->email = $request->input('email');
$profile->username = $request->input('username');
$profile->password = $request->input('password');
$profile->update();
к
$profile = Auth::user();
$profile->name = $request->input('name');
$profile->email = $request->input('email');
$profile->username = $request->input('username');
// Hash
$profile->password = \Hash::make($request->input('password'));
// Change to save method
$profile->save();
Попытайся!
//this will load the currently logged in user
$profile = auth()->user();
//if your user db have column 'name' and you wanna update it
$profile->name = 'Jezzabelle';
//save to the db
$profile->save();