Laravel маршрут ресурса не обновляется в базе данных с помощью {{method_field ('PATCH')}} - PullRequest
0 голосов
/ 30 января 2020

Laravel resource Маршрут не обновляется, когда я нажимаю кнопку обновления, но при этом сохраняется хранилище.

Я использую data-toggle="modal" для обновления моего значения, но он не обновляет мой категория?

Где именно моя проблема? я проверяю, что мой идентификатор передан должным образом, но он не идет к моей функции контроллера обновлений. я проверяю, используя dd($request->all()); в моей функции обновления в контроллере.

мой маршрут

Route::resource('/mother-category', 'MotherCategoryController');

моя функция обновления и хранения

public function store(Request $request)
    {
        $validator =Validator::make($request->all(), [
            'mother_name' => 'required',

        ]);

        if ($validator->fails()) {
            return redirect()->back()->withErrors($validator);
        }

        MotherCategory::insert([
            'mother_name'=>$request->mother_name
        ]);

        return redirect()->back()->with('message','Mother Category Created Successfully');
    }



    public function update(Request $request, MotherCategory $motherCategory)
    {

        $motherCategory->update([
            'mother_name' => $request->mother_name
        ]);

        return redirect()->back()->with('message','Mother Category Updated successfully');
    }

и мой файл блейда is


@extends('layouts.master')

@section('title', 'Add Mother Category')

@section('content')
    <div class="container">
        <div class="row">
            <div class="col-lg-10 mx-auto">
                <form action="{{route('mother-category.store')}}" method="post">
                    @csrf
                    <div class="card">
                        <div class="card-header">
                            <h4 style="text-align: center">Add a mother category</h4>
                        </div>
                        <div class="card-body">
                            <div class="form-row mb-3">
                                <div class="col">
                                    <small class="text-uppercase text-dark">Mother Category<span
                                            class="required text-danger">*</span></small>
                                    <input type="text" id="mother_name" name="mother_name" class="form-control"
                                           placeholder="Mother Category" required>

                                    @if ($errors->has('mother_name'))
                                        <small
                                            class="form-control-feedback text-danger">{{ $errors->first('mother_name') }}</small>
                                    @endif
                                </div>
                            </div>
                            <div class="form-row mb-3">
                                <div class="col">
                                    <button type="submit" class="btn btn-success"><i class="fa fa-check"></i> Add
                                    </button>
                                    <button type="button" class="btn btn-inverse">Cancel</button>
                                </div>
                            </div>
                        </div>
                    </div>
                </form>
            </div>
        </div>
        <br>

        <div class="row">
            <div class="col-md-12">
                <div class="card comp-card">
                    <div class="card-body">
                        <h5 class="w-100 text-center">All Mother categories</h5>
                        <div class="table-responsive">
                            <table class="table table-hover" id="motherTable">
                                <thead>
                                <tr>
                                    <th scope="col">#</th>
                                    <th scope="col">Name</th>
                                    <th scope="col">Action</th>
                                </tr>
                                </thead>
                                <tbody>
                                @foreach(App\Models\MotherCategory::all() as $index => $mc)
                                    <tr>
                                        <th scope="row">{{$index+1}}</th>
                                        <td>{{$mc->mother_name}}</td>
                                        <td>
                                            <a href="#" class="btn btn-sm btn-info" data-toggle="modal"
                                               data-target="#exampleModalCenter{{$mc->id}}">Edit</a>
                                            <a id="deleteBtn" data-id="{{$mc->id}}" href="#"
                                               class="btn btn-sm btn-danger">Delete</a>
                                        </td>
                                    </tr>
                                    <div class="modal fade" id="exampleModalCenter{{$mc->id}}" tabindex="-1" role="dialog"
                                         aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
                                        <div class="modal-dialog modal-dialog-centered" role="document">
                                            <div class="modal-content">
                                                <div class="modal-header">
                                                    <h5 class="modal-title" id="exampleModalCenterTitle">Update</h5>
                                                    <button type="button" class="close" data-dismiss="modal" aria-label="Close">
                                                        <span aria-hidden="true">&times;</span>
                                                    </button>
                                                </div>
                                                <div class="modal-body">
                                                    <form action="{{route('mother-category.update',$mc->id)}}"
                                                          method="post">
                                                        {{ csrf_field() }}
                                                        {{method_field('PATCH')}}
                                                        <div class="form-group">
                                                            <label for="exampleInputEmail1">Name</label>
                                                            {{-- <input type="hidden" name="id" value="{{$mc}}"> --}}
                                                            <input name="mother_name" type="text" class="form-control"
                                                                   id="exampleInputEmail1" aria-describedby="emailHelp"
                                                                   placeholder="Enter mother category"
                                                                   value="{{$mc->mother_name}}"><br><br>
                                                            <input type="submit" class=" btn btn-success"
                                                                   value="Update">
                                                        </div>
                                                    </form>
                                                </div>
                                                <div class="modal-footer">
                                                    <button type="button" class="btn btn-secondary"
                                                            data-dismiss="modal">Close
                                                    </button>
                                                </div>
                                            </div>
                                        </div>
                                    </div>
                                @endforeach
                                </tbody>
                            </table>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
@endsection



@section('script')

    <script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.13.5/js/bootstrap-select.min.js"></script>

    <script>
        $('#motherTable').DataTable({

        });
    </script>

    <script>
        $(document).on('click', '#deleteBtn', function (el) {
            var mcId = $(this).data("id");
            swal({
                title: "Are you sure?",
                text: "Once deleted, you will not be able to recover this category!",
                icon: "warning",
                buttons: true,
                dangerMode: true,
            })
                .then((willDelete) => {
                    if (willDelete) {
                        swal("You have deleted a mother category!", {
                            icon: "success",
                        });
                        window.location.href = window.location.href = "mother-category/delete/" + mcId;
                    }


                });
        });

        $(document).on('click', '#deleteNo', function (el) {
            swal("Oops", "You can't delete this. Some item belongs to it!!", "error")
        })
    </script>
@endsection

Rendered html


<div role="document" class="modal-dialog modal-dialog-centered">
    <div class="modal-content">
        <div class="modal-header"><h5 id="exampleModalCenterTitle" class="modal-title">Update</h5>
            <button type="button" data-dismiss="modal" aria-label="Close" class="close"><span
                    aria-hidden="true">×</span></button>
        </div>
        <div class="modal-body">
            <form action="http://localhost:8000/mother-category/2" method="POST"></form>
            <input type="hidden" name="_token" value="F0fzi1ufy2sO9r8apQ6NTrDtDgfGqycpEiUvaMEG"> <input type="hidden"
                                                                                                        name="_method"
                                                                                                        value="PUT">
            <div class="form-group"><label for="exampleInputEmail1">Name</label> <input name="mother_name" type="text"
                                                                                        id="exampleInputEmail1"
                                                                                        aria-describedby="emailHelp"
                                                                                        placeholder="Enter mother category"
                                                                                        value="Plaster &amp; gypsum board."
                                                                                        class="form-control fill user-success"><br><br>
                <input type="submit" value="Update" class=" btn btn-success"></div>
        </div>
        <div class="modal-footer">
            <button type="button" data-dismiss="modal" class="btn btn-secondary">Close
            </button>
        </div>
    </div>
</div>

Ответы [ 3 ]

0 голосов
/ 30 января 2020

Blade-файл

    <form method="POST" action="{{ route('admin.category.update',$category->id) }}">
          @csrf
           @method('PUT')
            <div class="form-group form-float">
             <div class="form-line">
              <input value="{{ old('name') }}{{ $category->name }}" name="name" type="text" class="form-control">
               <label class="form-label">{{ __('Name') }}</label>
                </div>
                 </div>
                    <br>                      
               <a href="{{ route('admin.category.index') }}"  class="btn btn-danger m-t-15 waves-effect">{{ __('BACK') }}</a>
             <button type="submit" class="btn btn-primary m-t-15 waves-effect">{{ __('SUBMIT') }}</button>
         </form>

web. php

    Route::resource('category','CategoryController');

    });

Контроллер


     public function edit($id)
        {
            $category =Category::find($id);
            return view('admin.category.edit',compact('category'));
        }

     public function update(Request $request, $id)
        {
            $this->validate($request,[
                'name' => 'required|unique:categories'
            ]);
            $category = Category::find($id);
            $category->name = $request->name;
            $category->slug = str_slug($request->name);
            $category->save();
            Toastr::success('Category Successfully Updated','Success');
            return redirect()->route('admin.category.index');

        }
0 голосов
/ 30 января 2020

Как уже отмечалось в комментарии, проблема заключается в том, что форма закрывается напрямую, как это видно в html

<div class="modal-body">
  <form action="http://localhost:8000/mother-category/2" method="POST"></form>
    <input type="hidden" name="_token" value="F0fzi1ufy2sO9r8apQ6NTrDtDgfGqycpEiUvaMEG">
    <input type="hidden" name="_method" value="PUT">
    ...

Поскольку лезвие не закрывается напрямую (см. Ниже)

<form action="{{route('mother-category.update',$mc->id)}}" method="post">
  {{ csrf_field() }}
  ...

Проблема должна быть вашей html сама

Быстрый Google послал мне на это: Laravel проблема закрытия формы лезвия

Проблема ваше использование формы в таблице. Вы должны завернуть его в тд или полностью переместить за пределы стола.

Надеюсь, это решит проблему

0 голосов
/ 30 января 2020

Заменить {{method_field('PATCH')}} на {{method_field('PUT')}}

Или вы можете использовать директиву лезвия @method('PUT')

<form action="/foo/bar" method="POST">
    @method('PUT')

    ...
</form>
...