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.
18 lines
469 B
PHTML
18 lines
469 B
PHTML
@extends('layouts.app')
|
|
|
|
@section('title')
|
|
{{__("Area desgin")}}
|
|
@endsection
|
|
@section('content')
|
|
<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>
|
|
{{__(ucfirst($area->name))}}
|
|
</a>
|
|
</div>
|
|
@endforeach
|
|
</div>
|
|
@endsection
|