@extends('layouts.app')
@section('title')
All Firmwares
@endsection
@section('description')
All firmwares is here.
@endsection
@section('breadcrumb')
All Firmwares
@endsection
@section('content')
# |
Version |
Created By |
Created At |
Firmware File |
@forelse ($firmwares as $index => $firmware)
{{ $index+1 }} |
{{ $firmware->version }} |
{{ $firmware->creator->name }} |
{{ date('d-M-Y', strtotime($firmware->created_at)) }} |
Download |
@empty
No data. |
@endforelse
@endsection