How to use bootstrap modal to edit the table data in MVC?

前端 未结 2 445
再見小時候
再見小時候 2020-12-23 15:44

I have a table in MVC view that displays employee details. I\'d like to add an edit functionality, but instead of opening it in a new page, I\'d like to show it using a boot

2条回答
  •  情歌与酒
    2020-12-23 15:52

    {{!--If you use laravel 5.8 then you can use my formula--}}

            
    @foreach($ourTeams as $ourTeam) @endforeach
    Name Designation Avatar Action
    {{$ourTeam->name}} {{$ourTeam->designation}} @if(empty($ourTeam->avatar)) @else @endif Delete
    {{$ourTeams->links()}}

提交回复
热议问题