feature #8

Merged
XiaoLFeng merged 32 commits from feature into master 2023-06-29 13:25:35 +08:00
Showing only changes of commit 6f88364d3a - Show all commits

View File

@ -172,7 +172,7 @@ class="w-16 h-16 p-1 rounded-full ring-2 ring-gray-300 dark:ring-gray-500 me-2 s
<select id="userSelColor" class="bg-gray-100 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500">
<option>请选择一个颜色</option>
@if(empty($blogColor[0]))
<option><a href="{{ route('console.friends-link.color') }}">暂没有模块,点击添加模块</a></option>
<option>暂没有模块,请去板块添加模块</option>
@else
@foreach($blogColor as $blogValue)
<option value="{{ $blogValue->id }}" @if($blog[0]->blogSetColor == $blogValue->id)selected @endif>{!! $blogValue->comment !!}</option>