mirror of https://github.com/4xmen/xshop.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
646 B
PHTML
23 lines
646 B
PHTML
@extends('layouts.app')
|
|
|
|
@section('title')
|
|
{{__("Area design")}}
|
|
@endsection
|
|
@section('content')
|
|
@if(config('app.demo'))
|
|
<div class="alert alert-warning">
|
|
{{__("Theme loaded every :M minutes in demo version", ['M' => 5])}}
|
|
</div>
|
|
@endif
|
|
<div class="row">
|
|
@foreach($areas as $area)
|
|
<div class="col-md-4">
|
|
<a class="area-list-item" href="{{route('admin.area.design',$area->name)}}">
|
|
<i class="{{$area->icon}}"></i>
|
|
{{__(readable($area->name))}}
|
|
</a>
|
|
</div>
|
|
@endforeach
|
|
</div>
|
|
@endsection
|