@extends('admin.layouts.app') @section('title') Users @endsection @section('css') @endsection @section('contents')

Data Export

Add New User
@if(Session::has('message'))
{{ Session::get('message') }}
@endif
@if(isset($users)) @php $i = 1; @endphp @foreach($users as $user) {{-- --}} @endforeach @endif
S/N Name Email Projects(s) Action
{{ $i++ }} {{ $user->name }} {{ $user->email }} {{ $user->projects->count() ?? 0 }} @if($user->projects->count() > 0) More.. @endif --}} {{-- @if($user->projects !== null)--}} {{--
    --}} {{-- @foreach($user->projects as $project)--}} {{--
  • {{ $project->name }} View
  • --}} {{-- @endforeach--}} {{--
--}} {{-- @endif--}} {{--
Invoices Edit @if($user->status === 'active') Deactivate @else Activate @endif
@endsection @section('js') @endsection