Текст в форме кнопки возврата действия Laravel - PullRequest
0 голосов
/ 18 июня 2020

Я хочу добавить кнопку действия в свою таблицу данных здесь код html таблица и таблицы данных

<table id="users-table" class="table table-bordered">
        <thead>
        <tr>
            <th>Id</th>
            <th>Name</th>
            <th>Email</th>
            <th>alamat</th>
            <th>nohp</th>
            <th>action</th>
        </tr>
        </thead>
    </table>

    <script id="script">
        $(function () {
            $('#users-table').DataTable({
                processing: true,
                serverSide: true,
                ajax: 'test/json'
            });
        });
    </script>

вот laravel json таблицы данных

public function data(Datatables $datatables)
{
    $builder = Kontak::query()->select('id', 'nama', 'email', 'alamat', 'nohp');

    return $datatables->eloquent($builder)
                    ->addColumn('action', 'users.datatables.intro')
                    ->rawColumns(['action'])
                    ->make();
}

но это сохраняет такой результат показа изображения результатов

Ответы [ 2 ]

0 голосов
/ 18 июня 2020

Вы можете использовать методы маршрутов для своей модели.
вид:

    <div class="table-responsive">
        <table class="table table-striped table-bordered">
            <thead>
            <tr>
                <th>ID</th>
                <th>Name</th>
                <th>Email</th>
                <th>alamat</th>
                <th>nohp</th>
                <th>action</th>
            </tr>
            </thead>
            <tbody>
            @foreach($users as $user)
                <tr>
                    <td>{{ $user->id }}</td>
                    <td>{{ $user->name }}</td>
                    <td>{{ $user->email }}</td>
                    <td>{{ $user->alamat }}</td>
                    <td>{{ $user->nohp }}</td>
                    <td>
                        <form action="{{ route('users.destroy'  , ['id' => $user->id]) }}" method="post">
                            {{ method_field('delete') }}
                            {{ csrf_field() }}
                            <div class="btn-group btn-group-xs">
                                <a href="{{ route('users.edit' , ['id' => $user->id]) }}"  class="btn btn-primary">edit</a>
                                <button type="submit" id="deleteButton" data-name="{{ $user->id }}" class="btn btn-xs btn-warning">delete</button>
                            </div>
                        </form>
                    </td>
                </tr>
            @endforeach
            </tbody>
        </table>
    </div>

контроллер:

    public function index()
    {
        $users = User::latest()->paginate(25);
        return view('users.all' , compact('users'));
    }

изменить users.all на вид ваших пользователей.

0 голосов
/ 18 июня 2020

Вы должны попробовать ->escapeColumns([]) перед ->addColumn('action', 'users.datatables.intro')

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...