@extends('layouts.default') @section('content')

{{ __('projects.module')}} {{ __('projects.projects_list')}} @if(ArrowadAuth::auth_allows('projects','C')) @endif

@if ($message = Session::get('success'))

{{ $message }}

@endif
@if($projects) @foreach($projects as $project) @endforeach @endif
{{ __('projects.project_title')}} {{ __('projects.company')}} {{ __('projects.project_type')}} {{ __('projects.project_status')}} {{ __('projects.submission_date')}} {{ __('common.action')}}
{{$project->name}} {{$project->company->name}} {{$project->projectType->name}} {{$project->projectStatus->name}} {{$project->submission_date}}
@if(ArrowadAuth::auth_allows('projects','E')) {{ __('common.edit')}} @endif @csrf @if(ArrowadAuth::auth_allows('projects','D')) @method('DELETE') @endif
@stop