@extends('layouts/contentLayoutMaster')
@section('title', 'Notifications')
@section('content')
@sortablelink('id', 'Id') |
@sortablelink('username', 'User Name') |
@sortablelink('note', 'Note') |
@sortablelink('action', 'Action') |
@forelse ($data as $key => $row)
{{ $key + 1 }}
|
{{ $row->customer->name }}
|
{{ $row->customer->note }}
|
@if( $row->status == 0)
@else
@endif
|
@empty
No records found.
|
@endforelse
@endsection