Skip to content

Commit

Permalink
add occurrence editor skeleton outline
Browse files Browse the repository at this point in the history
This code as no functionality it is just for trying out ui components
get a feel for things and prep for functionality later
  • Loading branch information
MuchQuak committed Nov 16, 2024
1 parent 79c681d commit f5edb14
Show file tree
Hide file tree
Showing 5 changed files with 622 additions and 2 deletions.
2 changes: 1 addition & 1 deletion resources/views/core/collections/list/item.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
@endif
<div>{{ $occurrence->catalogNumber . $occurrence->recordedBy . $occurrence->recordedBy . $occurrence->recordNumber . $occurrence->eventDate}}</div>
<div>{{ implode(' | ', array_filter([$occurrence->locality, $occurrence->decimalLatitude, $occurrence->minimumElevationInMeters], fn ($v) => $v != null)) }}</div>
<x-link href="{{url( config('portal.name') . '/collections/individual/index.php?occid=' . $occurrence->occid) }}" target="_blank">Full Record Details</x-link>
<x-link href="{{url('occurrence/' . $occurrence->occid ) }}" target="_blank">Full Record Details</x-link>
</div>
{{-- Icon Container --}}
<div class="absolute right-0 top-0 p-4 flex items-center gap-2">
Expand Down
3 changes: 3 additions & 0 deletions resources/views/core/icons/edit.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<i
{{$attributes->twMerge('fas fa-edit text-base-content hover:text-base-content/50')}}>
</i>
Loading

0 comments on commit f5edb14

Please sign in to comment.