Allow simple merging of places
This commit is contained in:
parent
71d59bc0d1
commit
451437ed6a
6 changed files with 132 additions and 23 deletions
14
resources/views/admin/places/merge/index.blade.php
Normal file
14
resources/views/admin/places/merge/index.blade.php
Normal file
|
@ -0,0 +1,14 @@
|
|||
@extends('master')
|
||||
|
||||
@section('title')
|
||||
Merge Places « Admin CP
|
||||
@stop
|
||||
|
||||
@section('content')
|
||||
<p>We shall be merging {{ $first->name }}. It’s location is <code>Point({{ $first->location }})</code>.</p>
|
||||
<ul>
|
||||
@foreach($places as $place)
|
||||
<li><a href="/admin/places/{{ $first->id }}/merge/{{ $place->id }}">{{ $place->name }}</a></li>
|
||||
@endforeach
|
||||
</ul>
|
||||
@stop
|
Loading…
Add table
Add a link
Reference in a new issue