@extends('employee.employee-layouts.master')
@section('content')
{{__('ID')}} |
{{__('Title')}} |
{{__('Employee Name')}} |
{{__('Description')}} |
{{__('Date')}} |
{{__('Files')}} |
{{__('Download')}} |
@foreach($files as $key=>$file )
{{++$key}} |
{{$file->title}} |
{{$file->user->name}} |
{{$file->description}} |
{{$file->created_at->format('d-m-Y')}} |
{{$file->files}}
|
|
@endforeach
@endsection