@extends('layouts.customer') @section('content')
{{ $message }}
| Sr No | Job Title | Job Description | Job Position | Job Type | Job Rate | Job Status | Action |
|---|---|---|---|---|---|---|---|
| {{ ++$i }} | {{ $job->title }} | {{ str(strip_tags(str_replace([' ',' ',' '], "\n", $job->description)))->limit(50) }} |
{{ $job->position }} | @if( $job->type == '1' ) Permanent @else Temporary @endif | ${{ $job->rate }} | @if( $job->status == '1' ) Active @else In-active @endif |
|