@extends ('../welcome')
@section ('content')
user()->type == 'admin' || auth()->user()->role->hasPermission('contract-codes-export') ? 'example1' : 'nonExport' }}
class="table table-bordered table-striped">
| Code |
Purpose |
Created at |
@foreach ($codes as $code)
| {{$code->code}} |
{{$code->purpose}} |
{{$code->created_at}} |
@endforeach
@endsection