Ignore:
Timestamp:
10/17/21 18:39:50 (3 years ago)
Author:
Berat Kjufliju <kufliju@…>
Branches:
develop, master
Children:
bd9e8e3
Parents:
120759b
Message:

added validation to blades

File:
1 edited

Legend:

Unmodified
Added
Removed
  • resources/views/dashboard/users/index.blade.php

    r120759b rd795fa6  
    11@extends('layouts.app')
    22
    3 @section("title", "Users")
     3@section("title", "SaveSpace - Users")
    44
    5 @section('pageTitle', 'User List')
     5@section('pageTitle', 'Users')
    66
    77@section('head')
     
    3737                            <thead>
    3838                            <tr>
    39                                 <th>
    40 {{--                                    <div class="custom-control custom-checkbox">--}}
    41 {{--                                        <input type="checkbox" class="custom-control-input" id="user-list-select-all">--}}
    42 {{--                                        <label class="custom-control-label" for="user-list-select-all"></label>--}}
    43 {{--                                    </div>--}}
    44                                 </th>
     39                                <th></th>
    4540                                <th>State</th>
    4641                                <th>Username</th>
     
    4843                                <th>Email</th>
    4944                                <th>Phone Number</th>
     45                                <th>Created by</th>
    5046                                <th>Created at</th>
     47                                <th>Updated at</th>
    5148                                <th>Role</th>
    5249                                <th>Status</th>
     
    7673                                    <td>{{$user->name .' '. $user->surname}}</td>
    7774                                    <td>{{$user->email}}</td>
    78                                     <td>{{$user->mobile_number}}</td>
     75                                    <td>{{$user->phone_number}}</td>
     76                                    <td>{{ $user->getCreatedByName() }}</td>
    7977                                    <td>{{ date('d.m.Y', strtotime($user->created_at)) }}</td>
     78                                    @if($user->updated_at==NULL)
     79                                        <td>/</td>
     80                                    @else
     81                                        <td>{{ date('d.m.Y - H:i', strtotime($user->updated_at)) }}</td>
     82                                    @endif
    8083                                    <td>{{ $user->role->name }}</td>
    8184                                    <td>
Note: See TracChangeset for help on using the changeset viewer.