Add Country Add Region

@foreach ($countries as $country) @foreach ($country->children as $country) @endforeach @endforeach
ID Country Action
{{$country->id}} {{$country->title}}
{{$country->id}} └ {{$country->title}}

Upload CSV Add Point

@foreach($points as $point) @endforeach
ID Title Latitude Longitude Country Color Date/Time Action
{{$point->id}} {{$point->title}} {{$point->latitude}} {{$point->longitude}} @foreach ($countries as $c) @if($point->country_id == $c->id) {{$c->title}} @endif @endforeach @foreach ($colors as $c) @if($point->color_id == $c->id) {{$c->title}} @endif @endforeach {{$point->start_time}} {{$point->end_time}}
{{--

Add Color

--}} @foreach ($colors as $color) @endforeach
ID Color Text Action
{{$color->id}} {{$color->title}} {{$color->text}}
{{-- --}} @foreach ($users as $user) {{-- --}} @endforeach
ID Name EmailAction
{{$user->fb_id}} {{$user->name}} {{$user->email}}