diff --git a/resources/views/admin/profiles/home.blade.php b/resources/views/admin/profiles/home.blade.php new file mode 100644 index 000000000..dbcef56d2 --- /dev/null +++ b/resources/views/admin/profiles/home.blade.php @@ -0,0 +1,144 @@ +@extends('admin.partial.template-full') + +@section('section') +
+

Profiles

+ + + + + + + + + +
+
+@if(request()->input('layout') == 'list') +
+ + + + + + + + + + + @foreach($profiles as $profile) + + + + @endforeach + +
+ ID + + Username + + Statuses + + Storage + + Actions +
+ {{$profile->id}} +
+
+
+ {{$profiles->links()}} +
+@else +
+ @foreach($profiles as $profile) +
+
+
+ +

{{$profile->username}}

+
+
    +
  • +
    +

    {{$profile->statuses()->count()}}

    + +
    +
    +

    0

    + +
    +
    +

    {{$profile->followers()->count()}}

    + +
    +
  • +
  • + View + Actions +
  • +
+
+
+ @endforeach +
+
+ {{$profiles->links()}} +
+@endif +@endsection + +@push('styles') + +@endpush +@push('scripts') + +@endpush