@extends('template.app')
@section('title', 'Toko')
@section('css')
@endsection
@section('breadcrumb')
Toko
@endsection
@section('content')
@include('components.toast-notification')
|
Nama Toko |
Email |
No. Telpon |
Alamat |
Logo |
Aksi |
@foreach($stores as $store)
|
{{ $store->store_name }} |
{{ $store->email }} |
{{ $store->phone }} |
{{ $store->address }} |
@if($store->logo)
@else
No Logo
@endif
|
|
@endforeach
@endsection
@section('js')
@endsection