blessing-skin-server/resources/views/user/closet.blade.php

32 lines
951 B
PHP
Raw Normal View History

2016-07-21 22:01:57 +08:00
@extends('user.master')
2016-09-15 23:03:58 +08:00
@section('title', trans('general.my-closet'))
2016-07-21 22:01:57 +08:00
@section('content')
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>
2018-07-17 11:06:55 +08:00
@lang('general.my-closet')
2016-07-21 22:01:57 +08:00
</h1>
<div class="breadcrumb">
2018-08-08 12:30:50 +08:00
<a href="{{ url('skinlib/upload') }}"><i class="fas fa-file-upload"></i> @lang('user.closet.upload')</a>
<a href="{{ url('skinlib') }}"><i class="fas fa-search"></i> @lang('user.closet.search')</a>
2016-07-21 22:01:57 +08:00
</div>
</section>
<!-- Main content -->
2018-08-02 09:45:33 +08:00
<section class="content"></section><!-- /.content -->
2016-07-21 22:01:57 +08:00
</div><!-- /.content-wrapper -->
2018-08-17 12:32:44 +08:00
<script>
2018-09-09 09:28:05 +08:00
Object.defineProperty(blessing, 'extra', {
get: () => Object.freeze({
2018-08-17 12:32:44 +08:00
unverified: {{ option('require_verification') && !$user->verified ? 'true' : 'false' }}
2018-09-09 09:28:05 +08:00
})
2018-08-17 12:32:44 +08:00
})
</script>
2016-07-21 22:01:57 +08:00
@endsection