@extends('layouts.master')
@section('title',"Uygulama Tanımları")
@section('head')
@endsection
@section('content')
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
@if(session()->has('mesaj'))
{{ session('mesaj') }}
@endif
Departman Adı |
Value |
İşlem |
@foreach($departmanlar as $departman)
{{ $departman->tanim_adi }} |
{{ $departman->slug }} |
|
@endforeach
Program Adı |
Value |
İşlem |
@foreach($antivirusler as $antivirus)
{{ $antivirus->tanim_adi }} |
{{ $antivirus->slug }} |
|
@endforeach
Cihaz Türü |
Value |
İşlem |
@foreach($cihazTurleri as $cihazTuru)
{{ $cihazTuru->tanim_adi }} |
{{ $cihazTuru->slug }} |
|
@endforeach
RAM Boyutu |
Value |
İşlem |
@foreach($ramler as $ram)
{{ $ram->tanim_adi }} |
{{ $ram->slug }} |
|
@endforeach
İşletim Sistemi Adı |
İşlem |
@foreach($isletimSistemleri as $isletimSistemi)
{{ $isletimSistemi->tanim_adi }} |
|
@endforeach
Office Adı |
İşlem |
@foreach($officeler as $office)
{{ $office->tanim_adi }} |
|
@endforeach
@endsection
@section('footer')
@endsection