37 lines
1.3 KiB
PHP
37 lines
1.3 KiB
PHP
@extends('layouts.app')
|
|
|
|
@section('content')
|
|
<div class="agency_statistics" data-href="{{ route('agency.data') }}">
|
|
<div class="agency_statistics_select">
|
|
数据统计
|
|
</div>
|
|
<div class="agency_statistics_num">{{ count($sellers) }}家机构 <i class="icon-angle-right"></i></div>
|
|
</div>
|
|
@if($sellers->isEmpty())
|
|
<!-- 无机构 Start-->
|
|
<div class="classify_null" style="padding-top:4rem;background:none">
|
|
<img src="/assets/home/img/null0001.png" alt="" class="agency_null_img">
|
|
<div class="lesson_null_text">还没有机构~</div>
|
|
</div>
|
|
<!-- 无机构 End -->
|
|
@else
|
|
<ul class="recommend_container" style="background-color: #fff">
|
|
@foreach($sellers as $seller)
|
|
<li class="recommend_shop" data-href="{{ route('agency.lesson',$seller) }}">
|
|
<div class="recommend_img img-bg">
|
|
<span style="background-image:url({{ $seller->storage->path }})"></span>
|
|
</div>
|
|
<div class="recommend_list_block">
|
|
<div class="recommend_name text-nowrap">{{ $seller->name }}</div>
|
|
<div class="recommend_describe">
|
|
<div class="recommend_type"><span class=" text-nowrap">{{ $seller->category->title }}</span></div>
|
|
<div class="recommend_location"><i class="icon-book" style="color: #999;font-size: .6rem;"></i> {{ $seller->lesson_count }}门课</div>
|
|
</div>
|
|
</div>
|
|
</li>
|
|
@endforeach
|
|
</ul>
|
|
@endif
|
|
|
|
@endsection
|