pixelfed/resources/views/account/activity.blade.php

25 lines
763 B
PHP
Raw Normal View History

2018-05-27 03:25:04 +00:00
@extends('layouts.app')
@section('content')
2019-05-29 03:04:18 +00:00
<div>
2019-07-10 03:57:00 +00:00
<div class="bg-white py-4">
<div class="container">
<div class="d-flex justify-content-between align-items-center">
<div></div>
<a href="/account/activity" class="cursor-pointer font-weight-bold text-primary">Notifications</a>
2019-12-11 08:25:56 +00:00
@if(request()->user()->profile->is_private)
2019-07-10 03:57:00 +00:00
<a href="/account/follow-requests" class="cursor-pointer font-weight-bold text-dark">Follow Requests</a>
2019-12-11 08:25:56 +00:00
@endif
2019-07-10 03:57:00 +00:00
<div></div>
</div>
</div>
</div>
2019-05-29 03:04:18 +00:00
<activity-component></activity-component>
2018-05-27 03:25:04 +00:00
</div>
@endsection
2018-06-09 23:36:27 +00:00
@push('scripts')
2019-05-29 03:04:18 +00:00
<script type="text/javascript" src="{{ mix('js/activity.js') }}"></script>
2019-12-11 08:25:56 +00:00
<script type="text/javascript">window.App.boot();</script>
2018-06-09 23:36:27 +00:00
@endpush