50 lines
1.9 KiB
PHP
50 lines
1.9 KiB
PHP
@extends('layouts.app')
|
|
|
|
@section('title', $category->title)
|
|
|
|
@section('content')
|
|
<!-- content -->
|
|
<div class="container mian">
|
|
<!-- content-nav -->
|
|
<nav class="mian-nav">
|
|
@include('layouts.left',$parent)
|
|
</nav>
|
|
<!-- content-content -->
|
|
<div class="mian-content">
|
|
@include('layouts.navigation',['category'=>$category])
|
|
|
|
<!-- 省级领军人才梯队 -->
|
|
@if(getAllTalent(69)->isNotEmpty())
|
|
{{-- <div class="sub-title">--}}
|
|
{{-- <b><i class="fa fa-line-chart"></i>{{ getOneCategory(69,'title') }}</b>--}}
|
|
{{-- </div>--}}
|
|
@foreach(getAllTalent(69) as $talent)
|
|
<div class="rctd-boeder">
|
|
<div class="rctd2" style="background-image: url({{ $talent->cover_path }});"></div>
|
|
<p class="rctd3-p">
|
|
<span>梯队名称:</span>
|
|
<span>{{ $talent->title }}</span>
|
|
</p>
|
|
<p class="rctd3-p">
|
|
<span>带头人:</span>
|
|
<span>{{ $talent->leader }}</span>
|
|
</p>
|
|
<p class="rctd3-p">
|
|
<span>后备带头人:</span>
|
|
<span>{{ $talent->unleader }}</span>
|
|
</p>
|
|
|
|
<p class="rctd3-p">
|
|
<span>梯队介绍:</span>
|
|
<span>
|
|
{{ $talent->description }}
|
|
</span>
|
|
</p>
|
|
</div>
|
|
@endforeach
|
|
@endif
|
|
</div>
|
|
</div>
|
|
<!-- end content -->
|
|
@endsection
|