0
0
Files
Babyclass/resources/views/sellers/index.blade.php
2020-08-04 10:17:22 +08:00

27 lines
879 B
PHP

@extends('layouts.app')
@section('content')
<section class="padding_btm">
<ul class="new_store" style="padding-top:.75rem;background:#fff">
@foreach ($sellers as $seller)
<li data-href="{{ route('sellers.show',$seller) }}">
<div class="new_store_logo" style="background-image: none">
<span style="background-image: url({{ $seller->cover->path }})"></span>
</div>
<div class="new_store_title text-nowrap">
{{ $seller->name }}
</div>
<div class="new_store_describe text-nowrap">
{{ $seller->description }}
</div>
<div class="new_store_img img-bg">
<span style="background-image: url({{ $seller->getGoodsFirst() }})"></span>
</div>
</li>
@endforeach
</ul>
</section>
@endsection