@extends('shops.layout')
@section('shops-title')
Shop Index
@endsection
@section('shops-content')
{!! breadcrumbs(['Shops' => 'shops']) !!}
Shops
@foreach ($shops as $shop)
@if ($shop->is_staff)
@if (Auth::check() && Auth::user()->isstaff)
@include('shops._shop')
@endif
@else
@include('shops._shop')
@endif
@endforeach
@endsection